diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2022-05-23 19:45:10 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2022-05-23 19:45:10 +0530 |
commit | 415ba843c0dc66bcb84ae0fbd239b40b6818896b (patch) | |
tree | 169cd5b6e91173bcb7df22eb29b9f6625735ef9e /.scripts/compile_ | |
parent | c3362aefa2e762211409923cfff065541bebf9e7 (diff) |
minor changes + added old scripts
Diffstat (limited to '.scripts/compile_')
-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..abd9b9f --- /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" +g++ -o $output $file -lstdc++ |