![]() |
|
|
|
|
|||||||
| 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 |
| Grep results to store in a shell variable | jojan | Shell Programming and Scripting | 3 | 07-26-2007 09:44 AM |
| store awk results in a variable | forever_49ers | Shell Programming and Scripting | 1 | 09-19-2006 07:51 PM |
| Variable setting help please | penfold | Shell Programming and Scripting | 16 | 03-25-2006 06:25 PM |
| Setting a variable to result of FIND command | JP Favara | Windows & DOS: Issues & Discussions | 2 | 03-09-2005 07:17 PM |
| setting CC variable | mdbanas | UNIX for Dummies Questions & Answers | 1 | 08-18-2002 10:20 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Hi,
Hi, I run the command: hostname to get the host back from the server: db201 Now, I need to take that result and set it to a variable. Can anyone help me with this?? I need to be able to use the same script on multiple servers so I do not want to hardcode the hostname result into the variable. Can anyone please help?! Thanks in advance! |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Code:
MYHOST=`hostname` echo "$MYHOST" |
||||
| Google The UNIX and Linux Forums |