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