Answers for "cat command in linux?"

2

cat command

# cat command be used to show, create and redirect the contents of file
# create file called test.txt and ask for input
cat >test.txt
# show command 
cat text.txt
# Combinint multiple files into single files
cat text text2 text3 > text3
Posted by: Guest on May-28-2021
0

cat in bash shell

cat allows for you to write multiple lines of code without having to physically enter the file. You can use the command cat > filenmae - this works for windows' git bash
Posted by: Guest on August-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language