diff options
Diffstat (limited to '.scripts')
-rwxr-xr-x | .scripts/compile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.scripts/compile b/.scripts/compile new file mode 100755 index 0000000..b64016f --- /dev/null +++ b/.scripts/compile @@ -0,0 +1,12 @@ +#!/bin/sh + +if [ -z "$1" ]; then + echo "enter a correct .cpp file" + exit +else + file="$1" +fi +output=$(echo "$1" | cut -d "." -f1) +echo "$file" +echo "$output" +gcc -o $output $file -lstdc++ |