Globbing is the procedure of
Unlike MSDOS, where the called program had to interpret the patterns, the globbing on UNIX® is done by the shell, the matched filenames are given as parameters to a called command:
$ cat *.txtreally executes
$ cat 1.txt 3.txt foobar.txt XXX.txt
Discussion