home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.admin
- Path: sparky!uunet!snorkelwacker.mit.edu!bloom-picayune.mit.edu!athena.mit.edu!troutman
- From: troutman@athena.mit.edu (Joseph G Whelan III)
- Subject: Re: How to echo " character in a csh script???
- Message-ID: <1992Nov20.162736.10289@athena.mit.edu>
- Sender: news@athena.mit.edu (News system)
- Nntp-Posting-Host: barker-6-6.mit.edu
- Organization: Massachusetts Institute of Technology
- References: <MEYER.92Nov19134651@ibsen.geomatic.no>
- Date: Fri, 20 Nov 1992 16:27:36 GMT
- Lines: 12
-
- You wanted to know how to echo the " character in a shell script:
-
- If you want to echo "hello" try this;
-
- echo -n '"'
- echo -n hello
- echo '"'
-
- Kinda obvious if you really think about it.
-
-
- -troutman
-