4 lines
175 B
Bash
4 lines
175 B
Bash
#!/bin/sh
|
|
target="/c/Games/WoW Legion/Interface/Sounds"
|
|
cp out/*speedy* $target
|
|
for file in $(ls $target); do mv $target/$file $target/$(echo $file | sed 's/-speedy//g'); done |