diff --git a/.DS_Store b/.DS_Store index 96c56ec..2ef040c 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/linuxbuild/portfolio b/linuxbuild/portfolio-linux similarity index 100% rename from linuxbuild/portfolio rename to linuxbuild/portfolio-linux diff --git a/run-linux.sh b/run-linux.sh new file mode 100644 index 0000000..696db84 --- /dev/null +++ b/run-linux.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Download the Linux executable +curl -L https://github.com/KeshavAnandCode/Terminal/releases/download/v1.0/portfolio-linux -o /tmp/portfolio + +# Make it executable +chmod +x /tmp/portfolio + +# Run it +/tmp/portfolio + +# Clean up +rm /tmp/portfolio \ No newline at end of file diff --git a/run-mac.sh b/run-mac.sh new file mode 100644 index 0000000..6970d16 --- /dev/null +++ b/run-mac.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Download the macOS executable +curl -L https://github.com/KeshavAnandCode/Terminal/releases/download/v1.0/portfolio-mac -o /tmp/portfolio + +# Make it executable +chmod +x /tmp/portfolio + +# Run it +/tmp/portfolio + +# Clean up +rm /tmp/portfolio \ No newline at end of file diff --git a/run-windows.bat b/run-windows.bat new file mode 100644 index 0000000..637fde7 --- /dev/null +++ b/run-windows.bat @@ -0,0 +1,13 @@ +@echo off +setlocal + +:: Download the Windows executable +powershell -Command "Invoke-WebRequest -Uri 'https://github.com/KeshavAnandCode/Terminal/releases/download/v1.0/portfolio-windows' -OutFile '%TEMP%\\portfolio.exe'" + +:: Run the executable +"%TEMP%\portfolio.exe" + +:: Clean up +del "%TEMP%\portfolio.exe" + +endlocal \ No newline at end of file