Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
ls | xargs -I {} echo "mv {} {}.txt"
mv file1 file1.txt
mv file2 file2.txt
mv file3 file3.txt

General Search

Ubuntu has mlocate but on other systems you will need to use find,

Code Block
languagebash
find / -name [filename] -print # find a file
find / -size +51024 -print     # where 51024 is in Kilobytes which is approximately 5MB

Search Inside of Files

Try to memorize this command,

...