This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#print all files in this directory (recursively) with their full path | |
find . -type f | sed "s#^.#$(pwd)#" | |
#insert blah at the beginning of every line in a file | |
cat guinea_pig_file | sed "s/^/Blah /g" |