summaryrefslogtreecommitdiff
path: root/.scripts
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-03-30 11:23:59 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-03-30 11:23:59 +0530
commit0fca442eeead2bdd99df7f84412db077d8e2c875 (patch)
tree5b55757bcd85dac413838e3d9d9a5e135c327a30 /.scripts
parentfa3750251398d43a768e498ddf96663bff3d993a (diff)
adding c/c++ compile alias-like script
Diffstat (limited to '.scripts')
-rwxr-xr-x.scripts/compile12
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++