#terminal
Read more stories on Hashnode
Articles with this tag
Pathname expansion expanding a pathname, how do we do that? if we do echo 2 * 3 nuclearegg69@zenbook-f13:~/testRen$ echo 2 * 3 2 a apple b banana c...
You can scroll the history of the commands you run by the up and down arrows in the terminal. But in case you would like to look at the list of the...
Prerequisites redirection Piping is a very useful feature in bash. You can connect the standard output of a command to be the standard input of...
nuclearegg69@zenbook-f13:~$ cat alphabet.txt apple banana carrot donkey nuclearegg69@zenbook-f13:~$ tac...
When we run a process, a table named the file description table gets assigned to it. The table describes the relevant file contents to the process. If...
The default function of sort command and the -r or --reverse option nuclearegg69@zenbook-f13:~$ cat unsorted.txt white apple yellow orange black...