![]() |
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 |
| Regarding Shell Scripting | anilkarikkandar | UNIX for Dummies Questions & Answers | 3 | 11-20-2006 12:26 AM |
| HELP PLS!! Shell Scripting!! | Mary_xxx | Shell Programming and Scripting | 9 | 09-16-2006 06:52 AM |
| difference between AIX shell scripting and Unix shell scripting. | haroonec | Shell Programming and Scripting | 2 | 04-12-2006 08:12 AM |
| something else on shell scripting | master_6ez | Shell Programming and Scripting | 1 | 11-21-2004 11:42 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi friends I am new in this forum....
I am currently working as a Linux Admin in a company..... Currently i have faced a problem,if u help me that will great for me.. I need a little guidence 2 create a shell script which will automatically changes 2 a specific user (just using "SU") according 2 me , then enter into a specifc directory and execute a executable file.... This should be completely time dependent and automatic......... |
|
||||
|
Really need a little more information. Is the script run as root? Is it the same executable file in each directory changed to? if not how do you know what executable to run?
Out of interest, if it is *not* run as root then it can only be done in a totally insecure way unless you use sudo or something. Unbeliever |
|
||||
|
Thanks for the info in the PM.
Root can run scripts as different users using 'su -c <username>' So you could be doing something like. Code:
for user in <user list> do cd <relevant directory> su -c $user <command> done |
|
||||
|
'su -c' is just a construct for running a command as another user. It looks like the program you are running is having problems running under cron or something similar. I've never actually seen either of the errors you mention.
I would try searching for them in google and see what turns up. Remember that when you 'su -c <command' the command is being run as that user and so many operations that would succeed as root may fail. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|