Blame
Date:
Fri Dec 17 14:25:01 2021 UTC
Message:
Import sources
01
2021-12-17
jrmu
02
2021-12-17
jrmu
cat tells you to print out everything in the file commands
03
2021-12-17
jrmu
04
2021-12-17
jrmu
cat is short for concatenate, which means to combine two files together.
05
2021-12-17
jrmu
Since we only have one file, cat simply prints out the contents.
06
2021-12-17
jrmu
07
2021-12-17
jrmu
Good work! You now know how to display your first file.
08
2021-12-17
jrmu
09
2021-12-17
jrmu
Now, let's practice by displaying the files A, B, and C separately.
10
2021-12-17
jrmu
11
2021-12-17
jrmu
Afterwards, let's combine multiple files together using cat.
12
2021-12-17
jrmu
13
2021-12-17
jrmu
$ cat A B C
14
2021-12-17
jrmu
15
2021-12-17
jrmu
NOTE: Don't type the $ dollar symbol. The $ dollar symbol means run
16
2021-12-17
jrmu
the command as normal user. Just type 'cat A B C'.
17
2021-12-17
jrmu
IRCNow