How to Change Nulls to Spaces Using AWK
- 1). Locate and take note of the path to the file you wish to edit. For example, "/usr/guest/home/file.txt."
- 2). Open a console by opening the Terminal program.
- 3). Enter the command: "awk OFS="\000" '$1=$1' /usr/guest/home/file.txt." Replace "/usr/guest/home/file.txt" with the path to the file you wish to edit.
Source...