Vladislav@indao·Mar 17

Linux tips:
Creates a new file.

cat > filename.txt 
Merges filename1.txt and filename2.txt and stores the output in filename3.txt.
cat filename1.txt filename2.txt > filename3.txt 
Displays content in reverse order.
tac filename.txt 

penguin smiling GIF