answersLogoWhite

0

Any word typed in a terminal after echo is printed to the screen. Therefore, echo cat simply prints cat.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is the difference between echo cat and cat echo commands in Linux?

echo cat will print out the word 'cat' on the command line. cat echo will attempt to list the contents of a file called 'echo'.


What command prints text to the screen in Linux?

echo "This is my text."


What command do you type in Linux to determine the shell you are using?

echo $SHELL


How do you reverse string in linux?

With program tac. ExampleVALUE="ABC DEF"REV=$(echo "$VALUE" | tac)echo "$VALUE" "-->" "$REV"


How do you use for loop in batch programming?

Platform dependent. Example for linux: for i in 1 2 3; do echo "i=$i" done


How do you find sid of oracle 10g?

At a Linux prompt type env. Look for $ORACLE_SID. Or type echo $ORACLE_SID.


In a drama called ''Pass It On'' why does Echo blame Judge for killing the cat?

because Echo knows Judge wants him to leave.


Why did echo talk so much?

because he was a siameese cat, that's what they do


How do you see your Linux path?

Not exactly clean what do you mean.1. Which directory are you in: pwd2. Your PATH environment variable: echo $PATH


How man i find out my classpath?

Classpath is represented by "classpath" environment variable, not case sensitive, print its value in Linux echo $classpath in Windows echo %classpath% from java program use System.getProperty("java.classpath")


What Linux command can you use to make a quick note to store in a file called meeting?

echo "text goes here" > meeting


Which of the following command is used to display the first 10 line of a file in Linux?

$ cat filename | head