| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
| From: | "Dave Korn" <dk AT artimi DOT com> |
| To: | <cygwin AT cygwin DOT com> |
| Subject: | RE: "which" command does not expand "~" in path |
| Date: | Mon, 27 Sep 2004 18:28:39 +0100 |
| MIME-Version: | 1.0 |
| In-Reply-To: | <NGBBLLIAMFLGJEOAJCCEEENEDOAA._garbage_collector_@telia.com> |
| Message-ID: | <NUTMEGkxOjmfCHJr1Wt0000010a@NUTMEG.CAM.ARTIMI.COM> |
| X-OriginalArrivalTime: | 27 Sep 2004 17:28:40.0501 (UTC) FILETIME=[6E050650:01C4A4B7] |
| X-MIME-Autoconverted: | from quoted-printable to 8bit by delorie.com id i8RHTiMs002846 |
> -----Original Message-----
> From: cygwin-owner On Behalf Of Hannu E K Nevalainen
> Sent: 27 September 2004 18:24
> you wrote:
>
> > On Mon, 27 Sep 2004, Sven Köhler wrote:
> >> I just wondered how to write a "correct" shell-script that
> runs with
> >> /bin/sh, and it seems there is no way "shell-script"-way to figure
> >> out a user's homedir.
> >
> > You could try
> >
> > awk -F: "/^username:/"'{print $6}' < /etc/passwd
> >
> > (the pattern is in double quotes so that variable substitution can
> > occur, e.g., you could change "username" to "$1" in a shell script).
> > Igor --
>
> $ u="Hannu";sed -nre "s/^$u.*:(.*):.*$/\1/p" </etc/passwd
>
> I bet there are some more other ways to do it... ;-P
My first thought was
grep "username" /etc/passwd | cut -d ':' -f 6
cheers,
DaveK
--
Can't think of a witty .sigline today....
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |