Jump to Content
Loading...
Comparte esta página
Español
Console Commands
Find & replace across multiple files in linux
[+]
From
http://goo.gl/YO1BFT
find . -name "*.php" -print | xargs sed -i 's/foo/bar/g'
Temporary files in bash
[+]
http://unix.stackexchange.com/a/181938
Infinite loop in bash
[+]
while :; do fortune; sleep 5;done
Similar