capint
10/24/2015 - 6:34 PM

Bash >> Move

Bash >> Move

### Change the name of all files with extension provided by the 1st parameter of 
# the command into text files
for i in *.$1; do mv "$i" "$i.txt"; done