Created
November 17, 2015 05:04
-
-
Save gbraccialli/318d28a1a14aff4738db 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
yarn application -list | grep application_ | cut -f1 > tmpyarnkill.txt | |
while read LINE | |
do | |
echo "killing $LINE" | |
yarn application -kill $LINE | |
done < tmpyarnkill.txt | |
rm tmpyarnkill.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment