diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-06-03 14:34:54 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-06-03 17:22:35 -0400 |
commit | c0fd33aaef5f345566a41c7c2558f27adf05558b (patch) | |
tree | 548bdf25b87d94663f0e726758c20733a357ccc8 /tests/bfs | |
parent | 247338968dea83838caae6852363f7282ece558e (diff) | |
download | bfs-c0fd33aaef5f345566a41c7c2558f27adf05558b.tar.xz |
parse: Handle multiple flags at once like -LEXO2
The POSIX Utility Syntax Guidelines specify that flag groups like -HL
should be handled like -H -L. GNU find doesn't support grouping flags
in this way, but BSD find does.
To avoid conflicts with non-flag primaries, for now we require at least
one flag in a group to be a capital letter. That is, we support things
like -Lds but not -ds. We also do not support -fPATH (without a space)
as it would conflict with -follow, -fprint, etc. It is impossible to be
compatible with both GNU and BSD find here:
user@gnu$ find -follow
link
link/file
...
user@bsd$ find -follow
find: ollow: No such file or directory
Link: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap12.html
Diffstat (limited to 'tests/bfs')
-rw-r--r-- | tests/bfs/LD_stat.out | 17 | ||||
-rw-r--r-- | tests/bfs/LD_stat.sh | 1 | ||||
-rw-r--r-- | tests/bfs/O_3.sh | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/tests/bfs/LD_stat.out b/tests/bfs/LD_stat.out new file mode 100644 index 0000000..ec9e861 --- /dev/null +++ b/tests/bfs/LD_stat.out @@ -0,0 +1,17 @@ +links +links/broken +links/deeply +links/deeply/nested +links/deeply/nested/broken +links/deeply/nested/dir +links/deeply/nested/file +links/deeply/nested/link +links/file +links/hardlink +links/notdir +links/skip +links/skip/broken +links/skip/dir +links/skip/file +links/skip/link +links/symlink diff --git a/tests/bfs/LD_stat.sh b/tests/bfs/LD_stat.sh new file mode 100644 index 0000000..d407de3 --- /dev/null +++ b/tests/bfs/LD_stat.sh @@ -0,0 +1 @@ +bfs_diff -LD stat links diff --git a/tests/bfs/O_3.sh b/tests/bfs/O_3.sh new file mode 100644 index 0000000..f159852 --- /dev/null +++ b/tests/bfs/O_3.sh @@ -0,0 +1 @@ +! invoke_bfs -O 3 basic |