From 6215bc6b4e524735b75a45cdf6d08c7edf641bdb Mon Sep 17 00:00:00 2001 From: xAlpharax <42233094+xAlpharax@users.noreply.github.com> Date: Sun, 24 Sep 2023 21:06:27 +0300 Subject: Shell scripts for compiling and running C and CUDA standalone files. Changes to be committed: new file: runc new file: runcuda --- runc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 runc (limited to 'runc') diff --git a/runc b/runc new file mode 100755 index 0000000..a68ac83 --- /dev/null +++ b/runc @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +g++ $1 -o temp + +chmod +x temp + +./temp + +rm temp -- cgit v1.2.3