public:shell_strip_ext
Shell: remove file extension
If you want to remove .gif from files:
#!/bin/sh
for file in *.gif
do
mv ${file} ${file%.gif}
done
public/shell_strip_ext.txt · Last modified: by 127.0.0.1
If you want to remove .gif from files:
#!/bin/sh
for file in *.gif
do
mv ${file} ${file%.gif}
done