http://thompsonng.blogspot.in/2013/01/tcpdump-packet-size-limited-during.html
Category: Shell
Recursive execusion of commands in Linux command prompt
When we want to execute any command recursively for a directory, we can use find command for that. find . -name ‘blah*’ -exec rm -rf {} ; But some times, it gives the error as Argument list too long. InContinue reading… Recursive execusion of commands in Linux command prompt
Disable wildcard epansion in Bash shell
set -f This disables the wildcard expansion in bash shell. Example: $ ksh $ ls -c Tom t tt ufaq $ set -f $ echo t* will output t*