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