Sponsored Content
Top Forums Shell Programming and Scripting How can I parse a record found in /etc/passwd into variables? Post 302151350 by porter on Friday 14th of December 2007 03:58:53 PM
Old 12-14-2007
If you know the user name then the only thing you need to look up is the home directory, in ksh this can be evaluated with ~username, eg eval ~\$USER.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How do I parse passwords into passwd command.

Do you know of any methods where I can send an input of passwords into the passwd command? For instance, I have a file which has the password stored and I want it to be sent into this command "passwd gilberteu" when it prompts for the new password and subsequently confirming the password that was... (0 Replies)
Discussion started by: gilberteu
0 Replies

2. Shell Programming and Scripting

How to parse a string into variables

I'm working in korn shell and have a variable which contains a string like: aa_yyyymmdd_bbb_ccc_ddd.abc. I want to treat the _ and . as delimiters and parse the string so I end up with 6 values in variables that I can manipulate. My original plan was to use var1=`echo $sting1 | cut -c1-c2` but... (9 Replies)
Discussion started by: aquimby
9 Replies

3. Shell Programming and Scripting

Bash Script to read a file and parse each record

Hi Guys, I am new to unix scripting and I am tasked to parse through a CSV file delimited by #. Sample: sample.csv H#A#B#C D#A#B#C T#A#B#C H = Header D = Detail Record T = Tail What I need is to read the file and parse through it to get the columns. I have no idea on how... (8 Replies)
Discussion started by: 3vilwyatt
8 Replies

4. Shell Programming and Scripting

Want to parse output for variables in Bash

Trying to finish up my script that automates some video encoding work. Situation: There is an MKV file to be transcoded. Problem: MKVINFO will give a bunch of output about an MKV file, included in that output are two lines I am interested in: | + Default duration: 41.708ms (23.976 fps... (9 Replies)
Discussion started by: randyharris
9 Replies

5. UNIX for Dummies Questions & Answers

Parse or cut concat variables to individual values

Hello I need to pass some environment parameters to a datastage job and am getting an error when trying to send the complete concatinated variable. I have decided to parse out just the values and send as parameters but am struggling to find the best way to do this (actually I am not very... (3 Replies)
Discussion started by: LynnC
3 Replies

6. Shell Programming and Scripting

prompt to delete each record when pattern is found

Hello!. I am working on a very simple program and I have been trying different things. This is so far what I have done and there is one small detail that still does not work. It finds all the records in a phonebook per say: ./rem Susan More than one match; Please select the one to remove: ... (3 Replies)
Discussion started by: bartsimpsong
3 Replies

7. Shell Programming and Scripting

Cut fields from /etc/passwd file into variables?

The script must ask the user to enter the user name and check whether the user exists in /etc/passwd (you must allow the partial usernames also). If the username exists, display the details as: List of users Login Name: User ID: ... (3 Replies)
Discussion started by: nobletechnology
3 Replies

8. Linux

Parse ; deliminated variable to create variables

Hi there, would appreciate some help on this parsing problem if anybody can help im trying to parse a variable with the following output, each of the values im trying to parse are deliminated by a ; T192... (8 Replies)
Discussion started by: scottish_jason
8 Replies

9. Shell Programming and Scripting

Parse variables from C++ to shell

Hi All, #include <iostream> int main() { std::int foo = 34; system("mkdir /home/linuxUser/fooDir"); system("vi fooFile") system("write foo in fooFile") foo = 43; foo = read foo from fooFile; std::cout << "foo = " << foo ; } result should be foo = 34 can... (3 Replies)
Discussion started by: linuxUser_
3 Replies

10. Shell Programming and Scripting

Delete only if duplicates found in each record

Hi, i have another problem. I have been trying to solve it by myself but failed. inputfile ;; ID T08578 NAME T08578 SBASE 30696 EBASE 32083 TYPE P func just test func chronology func cholesterol func null INT 30765-37333 INT 37154-37318 Link 5546 Link 8142 (4 Replies)
Discussion started by: redse171
4 Replies
SU(1)							    BSD General Commands Manual 						     SU(1)

NAME
su -- substitute user identity SYNOPSIS
su [-dfKlm] [-c login-class] [login[:group] [shell arguments]] su [-dfKlm] [-c login-class] [:group [shell arguments]] DESCRIPTION
su allows one user to become another user login without logging out and in as the new user. If a group is specified and login is a member of group, then the group is changed to group rather than to login's primary group. If login is omitted and group is provided (form two above), then login is assumed to be the current username. When executed by a user, the login user's password is requested. When using Kerberos, the password for login (or for ``login.root'', if no login is provided) is requested, and su switches to that user and group ID after obtaining a Kerberos ticket granting ticket. A shell is then executed, and any additional shell arguments after the login name are passed to the shell. su will resort to the local password file to find the password for login if there is a Kerberos error. If su is executed by root, no password is requested and a shell with the appropri- ate user ID is executed; no additional Kerberos tickets are obtained. Alternatively, if the user enters the password "s/key", authentication will use the S/Key one-time password system as described in skey(1). S/Key is a Trademark of Bellcore. By default, the environment is unmodified with the exception of LOGNAME, USER, HOME, SHELL, and SU_FROM. HOME and SHELL are set to the tar- get login's default values. LOGNAME and USER are set to the target login, unless the target login has a user ID of 0, in which case they are unmodified. SU_FROM is set to the caller's login. The invoked shell is the target login's. With the exception of SU_FROM this is the tra- ditional behavior of su. The options are as follows: -c Specify a login class. You may only override the default class if you're already root. See login.conf(5) for details. -d Same as -l, but does not change the current directory. -f If the invoked shell is csh(1), this option prevents it from reading the ``.cshrc'' file. If the invoked shell is sh(1), or ksh(1), this option unsets ENV, thus preventing the shell from executing the startup file pointed to by this variable. -K Do not attempt to use Kerberos to authenticate the user. -l Simulate a full login. The environment is discarded except for HOME, SHELL, PATH, TERM, LOGNAME, USER, and SU_FROM. HOME, SHELL, and SU_FROM are modified as above. LOGNAME and USER are set to the target login. PATH is set to the path specified in the /etc/login.conf file (or to the default of ``/usr/bin:/bin:/usr/pkg/bin:/usr/local/bin'' ). TERM is imported from your current envi- ronment. The invoked shell is the target login's, and su will change directory to the target login's home directory. - Same as -l. -m Leave the environment unmodified. The invoked shell is your login shell, and no directory changes are made. As a security precau- tion, if the target user's shell is a non-standard shell (as defined by getusershell(3)) and the caller's real uid is non-zero, su will fail. The -l and -m options are mutually exclusive; the last one specified overrides any previous ones. Only users in group ``wheel'' (normally gid 0), as listed in /etc/group, can su to ``root'', unless group wheel does not exist or has no mem- bers. (If you do not want anybody to be able to su to ``root'', make ``root'' the only member of group ``wheel'', which is the default.) For sites with very large user populations, group ``wheel'' can contain the names of other groups that will be considered authorized to su to ``root''. By default (unless the prompt is reset by a startup file) the super-user prompt is set to ``#'' to remind one of its awesome power. CUSTOMIZATION
Changing required group For the pam(8) version of su the name of the required group can be changed by setting gname in pam.conf(5): auth requisite pam_group.so no_warn group=gname root_only fail_safe For the non pam(8) version of su the same can be achieved by compiling with SU_GROUP set to the desired group name. Supplying own password su can be configured so that users in a particular group can supply their own password to become ``root''. For the pam(8) version of su this can be done by adding a line to pam.conf(5) such as: auth sufficient pam_group.so no_warn group=gname root_only authenticate where gname is the name of the desired group. For the non pam(8) version of su the same can be achieved by compiling with SU_ROOTAUTH set to the desired group name. Indirect groups This option is not available with the pam(8) version of su. For the non pam(8) version of su, if SU_INDIRECT_GROUP is defined, the SU_GROUP and SU_ROOTAUTH groups are treated as indirect groups. The group members of those two groups are treated as groups themselves. EXIT STATUS
su returns the exit status of the executed subshell, or 1 if any error occurred while switching privileges. ENVIRONMENT
Environment variables used by su: HOME Default home directory of real user ID unless modified as specified above. LOGNAME The user ID is always the effective ID (the target user ID) after an su unless the user ID is 0 (root). PATH Default search path of real user ID unless modified as specified above. TERM Provides terminal type which may be retained for the substituted user ID. USER The user ID is always the effective ID (the target user ID) after an su unless the user ID is 0 (root). EXAMPLES
To become user username and use the same environment as in original shell, execute: su username To become user username and use environment as if full login would be performed, execute: su -l username When a -c option is included after the login name it is not a su option, because any arguments after the login are passed to the shell. (See csh(1), ksh(1) or sh(1) for details.) To execute arbitrary command with privileges of user username, execute: su username -c "command args" SEE ALSO
csh(1), kinit(1), login(1), sh(1), skey(1), setusercontext(3), group(5), login.conf(5), passwd(5), environ(7), kerberos(8) HISTORY
A su command existed in Version 5 AT&T UNIX (and probably earlier). BSD
October 27, 2007 BSD
All times are GMT -4. The time now is 10:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy