![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | 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 here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Regarding Shell Scripting | anilkarikkandar | UNIX for Dummies Questions & Answers | 3 | 11-19-2006 09:26 PM |
| HELP PLS!! Shell Scripting!! | Mary_xxx | Shell Programming and Scripting | 9 | 09-16-2006 03:52 AM |
| difference between AIX shell scripting and Unix shell scripting. | haroonec | Shell Programming and Scripting | 2 | 04-12-2006 05:12 AM |
| something else on shell scripting | master_6ez | Shell Programming and Scripting | 1 | 11-21-2004 08:42 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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......... |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
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 |
|
#3
|
|||
|
|||
|
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 |
|
#4
|
|||
|
|||
|
I have tried with our code
i have given su -c root in shellscript but the error standard in must be a tty rm: cannot unlink `TIP-14-3000434.tip': Operation not permitted was coming please help regards rajan |
|
#5
|
|||
|
|||
|
'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. |
|||
| Google The UNIX and Linux Forums |