shell

bash commands collection

Find files with specific patterns 1 2 3 4 # This command find files with name has `news20` in the current directory and all of its sub-directories. find . -name '*news20*' # This command find and delete files with name has `news20` in the current directory and all of its sub-directories.