Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

in unix echo is used for

Answer Posted / tubecharger

In unix, echo is used to display whatever is following it
onto the terminal or screen. Special characters get handled
differently and are processed by the shell with their
special meaning. If special characters are to be displayed
using echo, then they must be preceded by a back-slash or
put in quotes or double quotes or a combination of all of
these depending on what you are trying to do.
For example:
example 1:
echo hello world
displays
hello world

example 2:
echo "Hello there!"
displays
Hello there!
(and here the special character ! is quoted so that it's
special meaning is ignored.)

example 3:
set message = "this is a message."
echo $message
displays
this is a message.

echo on - by itself does not turn on and off echoing of
commands to the terminal. echo on simply types "on" at the
terminal.

echo string >> filename may work on some systems but the
conventional way of doing this is using the cat command:
cat "hello world" > filename

Refer to the man page on csh, bash or sh for more details on
the echo command.

Is This Answer Correct ?    20 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do chgrp command do?

1288


How many unix commands are there?

1208


What is awk used for?

1179


What command is used to switching between users in unix?

1130


What do chmod, chown, chgrp commands do?

1353


What is the use of the command 'ls -x chapter[1-5]' ?

1269


What are the general commands in using unix os for a beginner?

1221


What are grep patterns?

1149


What is the pipe command?

1245


How do I search for text in vi?

1102


What is the size of time_t?

1271


Explain how to use grep command to list find the records of a file containing 10 different strings?

1125


What is grep r?

1161


Which command should you use to find the remaining disk space in unix server?

1350


Can you enlist some commonly used network commands?

1158