Created
June 13, 2013 09:54
-
-
Save arsdragonfly/5772568 to your computer and use it in GitHub Desktop.
PlayerArgsEnd error solution.
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
#!/bin/bash | |
#Don't change my filename. | |
#Put it into your worlds/(worldname)/players folder | |
#and execute this script. | |
FILES=./* | |
for f in $FILES | |
do | |
if [ "$f"x = "./checkpae.shx" ]; then | |
continue | |
else | |
if [ $(cat $f | grep PlayerArgsEnd)x = x ]; then | |
echo $f | |
fi | |
fi | |
done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment