summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-09-14 20:45:45 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-09-14 20:45:45 +0530
commit8827c411feec17bc91a9e14eedb46fadf0b9b1c5 (patch)
treec565a2661f21532f3ac30ac1b9d97e140fd3dd44
parent1a180b868d7da690e8c02c36247e1d14cd1c92db (diff)
Deleting old compile script
-rwxr-xr-x.scripts/compile12
-rwxr-xr-x.scripts/compile_12
2 files changed, 0 insertions, 24 deletions
diff --git a/.scripts/compile b/.scripts/compile
deleted file mode 100755
index b64016f..0000000
--- a/.scripts/compile
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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++
diff --git a/.scripts/compile_ b/.scripts/compile_
deleted file mode 100755
index abd9b9f..0000000
--- a/.scripts/compile_
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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++