diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-07-11 18:09:27 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-07-11 18:09:27 +0000 |
| commit | cc424f0d3468b75718e420a691cb5e3b238804b6 (patch) | |
| tree | b1131a1c4026663026eefcdb078848e697a610cc /pw/pw.c | |
| parent | ecf012ac29ba3e82e8b5e497ee1b80629ae5624f (diff) | |
| download | pw-darwin-cc424f0d3468b75718e420a691cb5e3b238804b6.tar.gz pw-darwin-cc424f0d3468b75718e420a691cb5e3b238804b6.zip | |
Make separate functions to show users and groups
Diffstat (limited to 'pw/pw.c')
| -rw-r--r-- | pw/pw.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -234,6 +234,9 @@ main(int argc, char *argv[]) conf.config = optarg; config = conf.config; break; + case 'F': + conf.force = true; + break; case 'N': conf.dryrun = true; break; @@ -248,6 +251,9 @@ main(int argc, char *argv[]) case 'Y': nis = true; break; + case 'a': + conf.all = true; + break; case 'g': if (which == 0) { /* for user* */ addarg(&arglist, 'g', optarg); |
