Skip to content

Instantly share code, notes, and snippets.

@Zeex
Created January 28, 2012 17: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 Zeex/1695025 to your computer and use it in GitHub Desktop.
Save Zeex/1695025 to your computer and use it in GitHub Desktop.
shell scripts for easy compiling
#!/bin/sh
me=`basename $0`
if [ $# -ne 1 ]; then
echo "Usage: $me <filterscript>"
echo "Example: $me fsdebug"
exit
fi
exec pawncc filterscripts/$1.pwn -ofilterscripts/$1.amx -d3 -iinclude -ipawno/include
#!/bin/sh
me=`basename $0`
if [ $# -ne 1 ]; then
echo "Usage: $me <gamemode>"
echo "Example: $me grandlarc"
exit
fi
exec pawncc gamemodes/$1.pwn -ogamemodes/$1.amx -d3 -iinclude -ipawno/include
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment