Added sh and bat scripts

This commit is contained in:
2025-10-18 00:24:02 -05:00
parent 6b75dec514
commit e2a442dc9d
5 changed files with 39 additions and 0 deletions

13
run-windows.bat Normal file
View File

@@ -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