Skip to content

Instantly share code, notes, and snippets.

@mininmobile
Created March 30, 2020 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mininmobile/2f7c9a8d9278826352b1d86a21add68d to your computer and use it in GitHub Desktop.
Save mininmobile/2f7c9a8d9278826352b1d86a21add68d to your computer and use it in GitHub Desktop.
Eterm
@echo off
:main
cls
title [{(Eterm)}]
echo [Eterminal]
echo write help/... for help
echo.
:start
set /p input=/...
if %input% == help/... goto help
if %input% == date/... goto date
if %input% == time/... goto time
if %input% == clear/... goto clearcon
if %input% == gt/main/... goto main
if %input% == calc/math/... goto calc
if %input% == progs/start/... goto startprog
if %input% == tools/mkfolder/... goto mkdir
if %input% == tools/mktxt/edit/... goto mkopentxt
if %input% == tools/delfile/... goto delfile
if %input% == tools/color/chg/... goto color
if %input% == cmd/... goto cmd
if %input% == work/txt/ntpad/... goto notepad
if %input% == hack/ping/... goto ping
if %input% == hack/cmd/... goto cmd
if %input% == help/paths/... goto helpp
echo -%input%- is an unkown command
goto start
:calc
set /p sum=Eterm/math/calc/...
set /a awnser=%sum%
echo %awnser%
goto start
:help
echo help/... - list of commands
echo date/... - displays date
echo time/... - displays time
echo clear/... - clears Eterm
echo gt/(path)/... - clears and go's to enterd path
echo calc/math/... - opens calc
echo progs/start/... - open starter
echo tools/mkfolder/... - opens make folder
echo tools/mktxt/edit/... - makes and opens a text file
echo tools/delfile/... - delete a file
echo tools/color/chg/... - change color
echo cmd/... - open cmd
echo work/txt/ntpad/... - notepad
echo hack/ping/... - ping website
echo hack/cmd/... - lauch cmd
echo help/paths/... - show list of current paths
goto start
:startprog
set /p ps=Eterm/progs/start/...
start %ps%
goto start
:mkdir
set /p foldname=Eterm/tools/mkfolder/...
mkdir %foldname%
goto start
:mkopentxt
set /p txtname=Eterm/tools/mktxt/.date..
set /p txtcont=Eterm/tools/mkfolder/edit/...
echo %txtcont% >> %txtname%.txt
goto start
:delfile
set /p delfilename=Eterm/tools/delfile/...
del %delfilename%
goto start
:color
set /p backcolor=Eterm/set/background/clr/...
set /p txtcolor=Eterm/set/txt/clr/...
color %backcolor%%txtcolor%
goto start
:cmd
set /p command=enter CMD command:
%command%
goto start
:date
echo %DATE%
goto start
:time
echo %TIME%
goto start
:clearcon
cls
goto start
:notepad
start C:\Windows\system32\notepad.exe
goto start
:ping
set /p ping=hack/ping/...
ping %ping%
goto start
:cmd
start
goto start
:helpp
echo main - main path
goto start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment