Reorganize a bit
[backups/.git] / scripts / other-commands
diff --git a/scripts/other-commands b/scripts/other-commands
new file mode 100644 (file)
index 0000000..73f3468
--- /dev/null
@@ -0,0 +1,13 @@
+# Handling null-delimited files with...
+
+# xargs
+xargs -0
+
+# grep
+grep [-z|--null-data]
+
+# sed
+# Can't figure this one out
+
+# awk
+awk 'BEGIN { RS="\0" } {print...}'