* Added personal VIM ide extension. * Implemented timeline selection (resolves D0007) * Slightly restyled the new timeline button and timeline list menu.
10 lines
107 B
Bash
Executable File
10 lines
107 B
Bash
Executable File
#!/bin/bash
|
|
|
|
perl -pi -e 's/[\t\r\f ]+$//g' $@
|
|
|
|
for file in $@
|
|
do
|
|
rm "$file.bak"
|
|
echo "$file done!"
|
|
done
|