# Simple options to cat: -ve

clear
cat sth
cat -ve sth

# -n

clear
cat md
cat -n md

# - as a command line argument

clear
echo "This is a tiresome song" | cat f1 - f2
echo "This is a tiresome song" | cat f1 f2 -

