diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-03-30 11:23:59 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-03-30 11:23:59 +0530 |
commit | 0fca442eeead2bdd99df7f84412db077d8e2c875 (patch) | |
tree | 5b55757bcd85dac413838e3d9d9a5e135c327a30 /.scripts | |
parent | fa3750251398d43a768e498ddf96663bff3d993a (diff) |
adding c/c++ compile alias-like script
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++ |