Skip to content

Instantly share code, notes, and snippets.

@aruneko
Created September 23, 2014 10:28
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 aruneko/871df1a5751c80231d97 to your computer and use it in GitHub Desktop.
Save aruneko/871df1a5751c80231d97 to your computer and use it in GitHub Desktop.
C++のめんどくさいコンパイルを肩代わりしてくれます
#!/bin/sh
g++ -o $1 $1.cpp
if [ ! -e ./bin ]; then
mkdir bin
fi
mv $1 ./bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment