I need to get a username from an Unix path with this format: /home/users/myusername/project/number/files
I just want "myusername" I've been trying for almost a hour and I'm completely clueless.
Any idea?
Thanks!
The 2nd capture group (index 1) will be |
|||
|
|
|
Maybe just Note that the critical part Also note that the extracted username is not the whole matching, but the first group (indicated by |
|||||||
|
|
The best answer to this depends on what you are trying to achieve. If you want to know the user who owns that file then you can use the stat command, this unfortunately has slightly different syntax dependant on the operating system however the following two commands work Max OS/X
Redhat/Fedora/Centos
If you really do want the string following /home/users then the either of the Regexes provided above will do that, you could use that in a bash script as follows (Mac OS/X)
|
|||
|
|
|
Check http://rubular.com/r/84zwJmV62G. The first match, not the entire match, is the username. |
|||
|
|
|
in a bourne shell something like :
string="/home/users/STRINGWEWANT/some/subdir/here"
echo $string | awk -F\/ '{print $3}'
would be one option, assuming its always the third element of the path. There are more lightweight that use only the shell builtins :
echo ${x#*users/}
will strip out everything up to and including 'users/'
echo ${y%%/*}
Will strip out the remainder. So to put it all together :
export path="/home/users/STRINGWEWABT/some/other/dirs"
export y=`echo ${path#*users/}` && echo ${y%%/*}
STRINGWEWABT
Also checkout the bash manpage and search for "Parameter Expansion" |
|||
|
|
passwddatabase. – Philipp Jul 6 '10 at 13:10