Skip to content

Instantly share code, notes, and snippets.

@mesuutt
Created December 4, 2016 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mesuutt/92e1d6286c442b2003fe2c67d2133d7b to your computer and use it in GitHub Desktop.
Save mesuutt/92e1d6286c442b2003fe2c67d2133d7b to your computer and use it in GitHub Desktop.
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