1 one | |
2 two | |
3 three | |
so on |
#!/bin/bash | |
COUNT=0 | |
while true; do | |
COUNT=$(($COUNT + 1)) | |
echo "$COUNT" | |
sleep 1 | |
done |
#!/bin/bash | |
while true; | |
do | |
grep -f myfifo numbers.txt awk '{print $2; system("")}' | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment