repo.or.cz
/
personal-kdebase.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add more spacing
[personal-kdebase.git]
/
workspace
/
kwin
/
data
/
on-off_to_true-false.sh
blob
a141819b1848e0da39bd057a8402581aeaa57ad4
1
#!/bin/sh
2
3
while
read
line
;
do
4
echo
"
$line
"
|
sed
's@=\s*on\s*$@=true@g'
|
sed
's@=\s*off\s*$@=false@g'
5
done