This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export PATH="/usr/local/bin:/usr/local/sbin:$PATH" | |
| # Extended pattern matching: | |
| # ? Matches zero or one occurrence of the given patterns | |
| # * Matches zero or more occurrences of the given patterns | |
| # + Matches one or more occurrences of the given patterns | |
| # @ Matches exactly one of the given patterns | |
| # ! Matches anything except one of the given patterns | |
| # example: Get a directory listing of all non PDF and PostScript files in the current directory | |
| # ls -lad !(*.p@(df|s)) |
NewerOlder