kwin/data/on-off_to_true-false.sh
Oswald Buddenhagen f9be59fdc3 make scripts executable
of course, make install handles that, but having it in the repo as well
is nicer

svn path=/trunk/KDE/kdebase/workspace/; revision=971905
2009-05-23 16:14:27 +00:00

5 lines
110 B
Bash
Executable file

#!/bin/sh
while read line; do
echo "$line" | sed 's@=\s*on\s*$@=true@g' | sed 's@=\s*off\s*$@=false@g'
done