![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| su (switching to other user) | bjagadeesh | Shell Programming and Scripting | 2 | 05-21-2008 04:51 AM |
| switching to another user in shell script... | bjagadeesh | Shell Programming and Scripting | 1 | 02-28-2008 07:10 AM |
| switching user from root to ordinary user | sasia | Shell Programming and Scripting | 3 | 01-25-2008 10:25 PM |
| FTP - switching user syntax | daveaasmith | UNIX for Dummies Questions & Answers | 1 | 09-05-2007 08:03 AM |
| Switching to single-user mode | gmoyano | UNIX for Dummies Questions & Answers | 1 | 08-05-2002 09:50 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
su (switching to other user)
Hi,
what is the use of the double quotes and !! in the following code segment: su - user1 << ""!! > /dev/null 2>&1 echo "welcome user1" EOF !! also what is the difference between below: su - user1 << ""!! > /dev/null 2>&1 and su - $USER << ""!!!> /dev/null 2>&1. Note: $USER = user2 Jagadeesh. |
|
||||
|
The !! marks the boundaries of a here document. Why the EOF is there I have no idea.
the "" (empty string ) forces the shell to "see" the !! probably because of an older shell. It will work in a modern shell, like ksh, without the "". Either way works. The "" seems just to add confusion for me. You can use !!! or any other nonsense (nonsense to the shell) combination of letters to set up a here doc. The only requirement is that they be indentical. like EEE and EEE |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|