diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-03-01 08:50:49 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-03-01 08:51:44 -0500 |
commit | b921fb2f43869ed12822ee99a80ccba9fd67c640 (patch) | |
tree | 374a249116e60fbe38be6c098f36fcd8d1a193c9 /cmdline.h | |
parent | b59a6f99a18246b08beb7997d9d2f59bac14d2de (diff) | |
download | bfs-b921fb2f43869ed12822ee99a80ccba9fd67c640.tar.xz |
Implement -unique
Closes #48
Diffstat (limited to 'cmdline.h')
-rw-r--r-- | cmdline.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -96,6 +96,8 @@ struct cmdline { bool xargs_safe; /** Whether to ignore deletions that race with bfs. */ bool ignore_races; + /** Whether to only return unique files. */ + bool unique; /** The command line expression. */ struct expr *expr; |