More Powerful custom Linux Commands
Basic idea is to join mutliple commands and create simple commands.
pupose?: Because I wanted to learn shell scripting.
Want to contribute to this repo? Read our contribution page.
open command
To open any file or directory in Ubuntu
Command Name | Use | status |
---|---|---|
open filename |
Open a given filename in any editor | pending |
open folder foldername |
Open a given directory in file manager | pending |
search command
Command Name | Uses | status |
---|---|---|
search keyword filename |
Search if the given keyword exist in the filename | pending |
search filename foldername |
Search if the file exists in the given directory | pending |
code Command
Working with codes in Shell
Command Name | use | status |
---|---|---|
code lang filename |
To run any language codes in terminal | pending |
code c filename |
To run C files | pending |
code cpp filename |
To run cpp files | pending |
code js filename |
To run JavaScript in terminal | pending |
code py filename |
To run python codes in terminal | pending |
code rb filename |
To run ruby codes | pending |
code sh filename |
To run shell scripts | pending |
code go filename |
To run GO codes in terminal | pending |
math Command
Command Name | Use | Status |
---|---|---|
math | To perform mathematical operations. | pending |
math add A B |
Addition of Two numbers | pending |
math sub A B |
Subtract two numbers | pending |
math pow A B |
Output A^B | Pending |
math bin A |
Converts integer A into Binary number | pending |
math hex A |
Converts Decimal integer to Hex | pending |
math mul A B |
Multiply A * B | Pending |
math div A B |
divide A/B | Pending |