![]() |
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 |
| How to authenticate sybase login thru shell script ? | libin4u2000 | UNIX for Dummies Questions & Answers | 3 | 12-09-2008 06:10 AM |
| ? Authenticate Sybase login thru script ? | libin4u2000 | Shell Programming and Scripting | 1 | 12-01-2008 11:45 PM |
| scp Unable to authenticate. Communication error. | barkath | AIX | 5 | 01-05-2008 06:53 PM |
| To call/execute a shell script from a shell script | konark | UNIX for Dummies Questions & Answers | 1 | 10-26-2007 06:16 PM |
| Linux security: Authenticate your users and know what they're up to - Search Enterpri | iBot | UNIX and Linux RSS News | 0 | 07-30-2007 02:30 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi
I want to create a script that will authenticate user from a file and if both of them match then only the script is allowed to be executed... Suppose I have a script say test.sh and a file config.txt for users whose user ids exist in the text file should only be given permission to execute the script... Thanks |
|
||||
|
Code:
user=`whoami` greo $user config.txt 2>/dev/null 1>&2 if [ $? -eq 0 ]; then echo "$user is allowed to execute" else echo "$user not allowed to execute..exiting" exit 1 fi .. .. cheers, Devaraj Takhellambam |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|