diff options
author | 2001-06-20 20:50:27 +0000 | |
---|---|---|
committer | 2001-06-20 20:50:27 +0000 | |
commit | 95c5acfc1ac086c14c7605bb7f413ba4eb21ff33 (patch) | |
tree | e88f027f39c4ca0e55bb839c4f81cbbd743a6aaa | |
parent | Avoid using too many args for ``set m[tr]u'' (diff) | |
download | wireguard-openbsd-95c5acfc1ac086c14c7605bb7f413ba4eb21ff33.tar.xz wireguard-openbsd-95c5acfc1ac086c14c7605bb7f413ba4eb21ff33.zip |
use exec
-rw-r--r-- | usr.bin/id/groups.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/id/groups.sh b/usr.bin/id/groups.sh index cec98549a52..fc3d0eeffd0 100644 --- a/usr.bin/id/groups.sh +++ b/usr.bin/id/groups.sh @@ -1,5 +1,5 @@ #!/bin/sh - -# $OpenBSD: groups.sh,v 1.3 1997/02/07 14:31:49 deraadt Exp $ +# $OpenBSD: groups.sh,v 1.4 2001/06/20 20:50:27 pjanzen Exp $ # Public domain. -/usr/bin/id -Gn $* +exec /usr/bin/id -Gn $* |