Tag: xargs

Find files of a specific mime-type

Use this command to find files of a given mime-type. In this example, we are looking for video files… find…

Copy all Txt Files

Find and copy all files with ‘.txt’ extention from a directory to another find /home/binnyva -name ‘*.txt’ | xargs cp…

Commit All Changes in Git

Telling Git when you’ve added, deleted and renamed files gets tedious. Use this command and Git will look at the…