Tags: bash tricks unix
Shell useful tricks (basic stuff)
Nice tricks with shell, I discovered in internet darkest corners :)Brace expansion takes a list of strings separated by commas and expands those strings into separate arguments for you. The list should be enclosed by braces.# echo {1,2,3,4,5}… more »