Skip to content

Instantly share code, notes, and snippets.

@arsdragonfly
Created June 13, 2013 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save arsdragonfly/5772568 to your computer and use it in GitHub Desktop.
Save arsdragonfly/5772568 to your computer and use it in GitHub Desktop.
PlayerArgsEnd error solution.
#!/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