DEV Community

Ahmad Ibrahim
Ahmad Ibrahim

Posted on

Programming Term: "glob"

glob patterns specify sets of filenames with wildcard characters. For example, the Unix Bash shell command mv *.txt textfiles/ moves (mv) all files with names ending in .txt from the current directory to the directory textfiles. Here, * is a wildcard standing for "any string of characters" and *.txt is a glob pattern.

(From Wikipedia)

Top comments (0)