2 lines
56 B
Bash
Executable file
2 lines
56 B
Bash
Executable file
#!/bin/sh
|
|
for i in *.$1;do mv $i `basename $i .$1`;done
|