- Right click and select
Open in Terminal
- Use
Ctrl
+Alt
+T
- Search
Terminal
inApplication
and open
pwd
-> Prints the path of present working directoryls
-> Lists the components in directoryls -a
-> Lists all the components in directory including hidden filesls -l
-> Lists all the components in directory with permissions and other detailscd
-> Changed directory to rootcd ..
-> Changes directory to parent directorycd /path/
-> Changes the directory to ./path/ , where . is the parent directory to path
mkdir <name>
-> Makes empty directorymkdir -p <parent>/<child>
-> Makes a directory inside directory by creating directory if it does not existrmdir <name>
-> Removes empty directorytouch <filename>
-> Creates a filerm <file>
-> Removes a filerm -r <directory>
-> Deletes non empty directory along with it's files and sub-directoriescp <source> <destination>
-> Copies source file to it's destinationmv <source> <destination>
-> Moves source file to it's destinationxdg-open <file/directory>
-> Opens the file/directory in it's default applicationgrep <"keyword"> <filename>
-> Gives the line in the file, that has the following keyword
echo <text>
-> Prints text in shellcat <text file>
-> Prints the content of text file in shellhistory
-> Shows the history of commands usedhistory -d <line>
-> Deletes the command of line number from historytree
-> Displays the directory/sub-directory structure from parent in form of treeman <command>
-> Displays manual of the command
Copyright (c) 2021 Green Club of Thoughts
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.