mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 16:34:32 +01:00
19 lines
243 B
Bash
Executable File
19 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
while read line # we know this is not always correct...
|
|
do
|
|
if [[ "$line" =~ nomap* ]]; then
|
|
echo "NOMAP"
|
|
continue
|
|
fi
|
|
|
|
echo "didmap/${line}"
|
|
|
|
if [ "$1" == "stop" ]; then
|
|
break
|
|
fi
|
|
|
|
done
|