summaryrefslogtreecommitdiffstats
path: root/software/unix-tricks.page
diff options
context:
space:
mode:
Diffstat (limited to 'software/unix-tricks.page')
-rw-r--r--software/unix-tricks.page6
1 files changed, 6 insertions, 0 deletions
diff --git a/software/unix-tricks.page b/software/unix-tricks.page
index d175133..26d6877 100644
--- a/software/unix-tricks.page
+++ b/software/unix-tricks.page
@@ -83,3 +83,9 @@ Or:
losetup /dev/loop0 distro.img
mount /dev/loop0 /mnt
+Search and Replace String in Multiple Files
+---------------------------------------------
+Using sed:
+
+ sed -i 's/OldString/NewString/g' *.txt
+