![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| weird echo output? | TinCanFury | Shell Programming and Scripting | 6 | 03-24-2008 03:40 PM |
| echo doesnot show output | samy123 | Shell Programming and Scripting | 4 | 01-21-2008 07:15 AM |
| piping output to echo | A1977 | Shell Programming and Scripting | 3 | 11-01-2006 05:58 AM |
| Store output and Echo | meyerder | Shell Programming and Scripting | 2 | 05-14-2006 06:44 AM |
| Passing output of sed/echo to a variable | donflamenco | Shell Programming and Scripting | 11 | 07-13-2005 07:08 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
What is the output of echo *
Hi all,
Kindly let me know the output of echo * command. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
List out all the files in the directory
Code:
$ echo * SNMP1 SNMP2 a a.s b b.s f f1 f2 ff ff1 ff2 file m s ss tmp tmp1 x a $ set -f $ echo * * $ set +f $ echo * SNMP1 SNMP2 a a.s b b.s f f1 f2 ff ff1 ff2 file m s ss tmp tmp1 x a |
|
#3
|
|||
|
|||
|
Hi,
Thanks for the reply. But I have one query, echo * displays only files in the current working directory or files and directories in the current working directory. |
|
#4
|
||||
|
||||
|
Quote:
|
|
#5
|
||||
|
||||
|
everything - the easiest way to find out is to try it.
|
||||
| Google The UNIX and Linux Forums |