Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Linux Programming & Scripting > running su from a bash script

Forgot Password?
 Linux Programming & Scripting   C, Perl, PHP, Bash Scripts, anything programming or script related post in here!

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Closed Thread
 
Thread Tools Display Modes
Old 01-23-2009   #11 (permalink)
Just Joined!
 
Join Date: Jan 2009
Posts: 1
heredocs

The problem you're having is due to the fact that su starts it's own shell and that shell gets its own input, not the remaining lines in your script. To put some of your script lines into the su stdin, you can use a heredoc.

Code:
su - user <<END_OF_HEREDOC
command_1 arg arg arg
command_2 $variable
END_OF_HEREDOC
Note that the $variable will be interpolated in the script's shell prior to sending it as stdin to su. To prevent that, put END_OF_HEREDOC in quotes on the su line, but not at the end of the heredoc. You can also add a dash ("-") between the << and END_OF_HEREDOC if you like which will cause any initial tabs (but not spaces) to be removed from the lines of the heredoc. And of course, your END_OF_HEREDOC designator can be pretty much any string including a simple period. All that together would look like:

Code:
su - user <<-'.'
	command_1 arg arg arg
	command_2 $variable
.
uberbaud is offline  


Old 01-23-2009   #12 (permalink)
Linux Newbie
 
Join Date: Jul 2007
Location: Greece
Posts: 207
Send a message via MSN to goude
Hello uberbaud

I just find out about heredoc by reading your post. Thank you for sharing that.
It's new to me and looks useful.
goude is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 08:12 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2