# Simple cat examples clear cat f1 cat f1 f2 cat f1 f2 > f3 cat f3 # Using the same file as input and output #1 cat f3 > f3 cat f3 # Using the same file as input and output #2 cat f1 f2 > f3 cat f3 cat < f3 > f3 cat f3