9 lines
93 B
Plaintext
9 lines
93 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
|
||
|
while read -r file
|
||
|
do
|
||
|
case "$1" in
|
||
|
"w") setwall "$file" &;;
|
||
|
esac
|
||
|
done
|