tac and rev — cat's antagonists


nuclearegg69@zenbook-f13:~$ cat alphabet.txt
apple
banana
carrot
donkey
nuclearegg69@zenbook-f13:~$ tac alphabet.txt
donkey
carrot
banana
apple
nuclearegg69@zenbook-f13:~$ rev alphabet.txt
elppa
ananab
torrac
yeknod
Search for a command to run...


nuclearegg69@zenbook-f13:~$ cat alphabet.txt
apple
banana
carrot
donkey
nuclearegg69@zenbook-f13:~$ tac alphabet.txt
donkey
carrot
banana
apple
nuclearegg69@zenbook-f13:~$ rev alphabet.txt
elppa
ananab
torrac
yeknod
No comments yet. Be the first to comment.
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 another command. The first type of pipe is like this. A one to one pipe. stdout of 1st command goes as...
nuclearegg69@zenbook-f13:~$ ls -l total 56 -rw-r--r-- 1 nuclearegg69 nuclearegg69 0 Oct 10 07:55 1 -rw-r--r-- 1 nuclearegg69 nuclearegg69 0 Oct 10 07:55 2 -rw-r--r-- 1 nuclearegg69 nuclearegg69 0 Oct 10 07:55 3 -rw-r--r-- 1 nuclearegg69 nucl...
<input value='something'> If we change the user input (text on ui) to be 'something else', what happens to the attribute value in the html and what happens to the value property on the dom object representing that element? The property value will ch...
A closure is a function with its outer function lexical scope/environment. What does 'lexical' mean? 'Lexical' means relating to words, so the 'lexical scope of a function' is the scope related to the wording of that function or the definition of th...

Both are array-like objects but they differ in some areas HTML Collection is a collection of element nodes is returned by 'getElementsByClassName' and 'getElementsByTagName' Nodelist contains all types of nodes: element nodes, text nodes, etc is r...

When we query an element in js using document.querySelector syntax. We might would want to stop a bit and think about what we wrote document.querySelector looks like the syntax we use for properties on a object where the name before the dot (.) repre...
