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*
When curiosity outbursts …!!!
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*