Tools

From wiki.linuxonlinehelp.eu
Revision as of 17:07, 24 May 2017 by Author (talk | contribs)
Jump to navigation Jump to search

find

find multiple files/folders

$find /path -type d \( -name "foldername1" -o -name "foldername2" \ )

find and remove on the fly

find /path -name "filename-to-delete" -type f -exec rm -rf {} \;

find by size over 500MB and list them into Textfile

find / -size +500M -type f > /big-files.txt


grep

tar

bash scripts

Header:

#!/bin/bash                        #set interpreter
date=`/bin/date +%Y%m%d-%H%M%S`    #set data-time variable for $date