Make the script executable
[backups/.git] / scripts / other-commands
1 # Handling null-delimited files with...
2
3 # xargs
4 xargs -0
5
6 # grep
7 grep [-z|--null-data]
8
9 # sed
10 # Can't figure this one out
11
12 # awk
13 awk 'BEGIN { RS="\0" } {print...}'