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*

Leave a Reply

Your email address will not be published. Required fields are marked *