Welcome! NeoShell is a friendly terminal that understands natural language commands. No more memorizing cryptic Unix commands - just type what you mean.
Instead of typing ls -la, just type list or show.
Instead of pwd, type whereami.
Instead of mkdir, type makedir.
It's that simple.
g++ -o neoshell.exe neoshell.cpp -std=c++11 -staticneoshell.exeThat's it! You're ready to go.
list # Show files in current folder
whereami # Where am I right now?
goto Documents # Go to Documents folder
makedir projects # Create a new folder
read myfile.txt # Read a file
print Hello World # Display some text
who # Show your username
when # What time is it?Made a typo? NeoShell will help:
> lst
Did you mean:
list
lastSave Your Favorite Places
bookmark add work # Save current location
bookmark go work # Jump back instantlyCreate Shortcuts
alias ll=list # Create your own commandsQuick Calculator
calc 15*20 # Do quick mathTodo List
todo add Fix the bug
todo list
todo done 1Quick Notes
note Remember to deploy tomorrowhelp # See all available commandstheme default # Professional look
theme minimal # Clean and simple
theme cyber # Futuristic styleexit # or quit, or byeNeoShell is designed to be intuitive. If you think a command should work a certain way, it probably does. Just try it!
Made with care for humans who prefer speaking naturally over memorizing commands.