Archive for August, 2009
- TECHPULP |
Bash brace expansion to expand arguments
Braces can be used to expand arguments in bash. Bash expands a list of strings separated by commas with in braces to a list of strings separated by spaces. Look at the simple example below: [neo@techpulp ~]# echo {red,green,white} red...