I am very interested on:
- Javascript
- ReactJS
- Everything around those technologies to create great websites and apps.
I don't have contributions yet but that's why I am here.
On Linux you can find commands for different actions, as shown on the next table:
Command | Description |
---|---|
command --help | Shows the information about the command typed. |
ls | Lists information about the files on the current directory by default. |
cd | Changes the shell working directory. |
pwd | Prints the name of the current working directory. |
cal | Shows a calendar on text mode in the console. |
df | Shows information about the file system on which each file resides, or all file systems by default. |
To create aliases on Linux you need to use the command alias.
For example, to create an alias for the command clear:
alias cl="clear"
In the next table we can see some recommended aliases for Linux:
Alias | Command |
---|---|
cl | alias cl='clear' |
rm | alias rm='trash' |