Tag perl
perl replace text in multiple files
perl replace text in multiple files perl -pi -e ‘s~OLDTEXT~NEWTEXT~g’ /path/to/filenames/* Alternative (to avoid escaping slashes): perl -pi -e ‘s|w/|with|g’
freebsd find
How to find files, programs, etc using freebsd The locate command is good for finding files and directories. Enter something similar to: locate someprogram | more If that doesn’t work, perhaps try the whereis or find commands: whereis someprogram |…