mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
5 lines
96 B
Bash
Executable file
5 lines
96 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for i in Akonadi*.eps; do
|
|
mv "$i" `echo $i | tr [A-Z] [a-z] | tr [\ ] [_]`;
|
|
done
|