Use `id -G` rather than `groups` to get a list of groups for this
authorMartin Pool <mbp@samba.org>
Fri, 22 Mar 2002 05:06:36 +0000 (05:06 +0000)
committerMartin Pool <mbp@samba.org>
Fri, 22 Mar 2002 05:06:36 +0000 (05:06 +0000)
user, so that we can cope on systems like Cygwin that tend to have
group names containing spaces.

testsuite/chgrp.test

index 3bcd0d5e9c6453fd6674f1ab688b8f5202366826..8cc89e0469d6d32fd953282e487b20f97d1952c2 100644 (file)
@@ -18,7 +18,9 @@ set -x
 fromdir="$scratchdir/from"
 todir="$scratchdir/to"
 
-mygrps="`groups`" || fail "Can't get groups"
+# TODO: I guess some systems will not have 'id', and therefore we have
+# to ship or emulate it.
+mygrps="`id -G`" || fail "Can't get groups"
 mkdir "$fromdir"
 
 for g in $mygrps