Last active
December 19, 2015 07:02
-
-
Save gecko655/4ac992307421ef8e5373 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#for i in `seq 1 10`; do while [ -z $out ]; do out=`matsuya 1 | perl -nlE 'print if /(?=.*うどん.*).*カレー.*/'`; done && echo $out && unset out; done | |
for i in `seq 1 10` | |
do | |
while [ -z $out ] | |
do | |
out=`matsuya 1 | perl -nlE 'print if /(?=.*うどん.*).*カレー.*/'` | |
done && echo $out && unset out | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment