chat
#> cat myfile.txt
HELLO THERE
Fierce Flamingo
#> cat myfile.txt
HELLO THERE
KITTY CAT CUTE
\
/ /\__/\
\__=( o_O )=
(__________)
|_ |_ |_ |_
<img src="http://placekitten.com/600/450">
cat file # Prints content of file in console
cat file1 file2 > file3 # Prints content of file1 and file2 into file3
cat -n file # Prints content of file enumerated (-n)
The best animal
Meow!
<i class="mdi mdi-camera-iris"></i>
console.log("cat")
print("cat")
MyCat = "cat"
var Mycat = "cat"
#include <stdio.h>
int main() {
printf("cat");
return 0;
}
(y) Same