Initial commit
This commit is contained in:
6
mp3/002/upper2lower.sh
Executable file
6
mp3/002/upper2lower.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for f in *; do
|
||||
new=$(echo "$f" | tr '[:upper:]' '[:lower:]')
|
||||
mv "$f" "$new"
|
||||
done
|
||||
Reference in New Issue
Block a user