What does cat potion1.txt potion2.txt potion3.txt write to standard output?
cat potion1.txt potion2.txt potion3.txt
Only the three filenames, without their contents.
Only the first file because cat accepts one input at a time.
The contents of the three files concatenated in the order they are named.
All lines alphabetically sorted across the files.