answersLogoWhite

0


Best Answer

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'.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

echo cat will print out the word 'cat' on the command line.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between echo cat and cat echo commands in Linux?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference in conditional control statement of Linux shell and C?

Almost everything. C: if (expression) statement else statement Shell: if COMMANDS then COMMANDS else COMMANDS fi Note: these parts can be separated with semicolon as well, eg: if test x"$SHELL" = x"/bin/bash"; then echo 'Bash'; else echo 'Other'; fi


What is difference between echo and ' ' in unix?

Echo is a program. '' is not a program. '' does not perform any action. Echo returns what you type. '' does not.


What is the difference between sonar and echo location?

Sonar location is in the water and echo location is in the air.


What command of the Autoexecbat file turns on and off the displaying of commands and messages?

echo on echo off


What is the difference between reverberation and echo?

The gaps between the reflections are long when you hear an echo. When the reflections are very close together then you here no single echo, you hear many close reflections as a reverberation.


What is echo cat in Linux?

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


What is the difference between sonar and echo?

basically same but sonar uses ultta sonic waves and echo uses sound in air


What is the difference between internal and external command?

Internal commands are the commands that are executed <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> directly by the shell. These commands will not have a separate process running for each. External commands are the commands that are executed by the kernal. These commands will have a process id running for it. Internal commands are stored in the cmd.exe command interpreter, ex. Dir External commands correspond to a .com or .cmd file, ex.


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


What is the difference between rem and echo in batch?

rem is a comment that is only seen if you edit the batch echo actually is printed when the batch is running


How do you reverse string in linux?

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