-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added -f option to README and help text (#8)
* added option -f to display the full path just like tree -f * added -f option to README and help text * fixed broken help CI test * Set up GitHub Actions (#17) * Set up GitHub Actions * Update rust.yml * added test fixture + fixed problem when start path is not ./ * fixed prefix problem with nested singleton directories Co-authored-by: Christoph MΓΌller <[email protected]> Co-authored-by: Jake Zimmerman <[email protected]>
- Loading branch information
1 parent
11aab7f
commit 0036c20
Showing
10 changed files
with
68 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
echo ----- -f ----- | ||
find test/cli/full_path | src/as_tree -f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
----- -f ----- | ||
./test/cli/full_path | ||
βββ ./test/cli/full_path/dir1 | ||
β βββ ./test/cli/full_path/dir1/bar.txt | ||
β βββ ./test/cli/full_path/dir1/foo.txt | ||
βββ ./test/cli/full_path/dir2 | ||
β βββ ./test/cli/full_path/dir2/qux.txt | ||
βββ ./test/cli/full_path/dir3/dir4 | ||
β βββ ./test/cli/full_path/dir3/dir4/zap.txt | ||
βββ ./test/cli/full_path/run | ||
βββ ./test/cli/full_path/run.sh | ||
βββ ./test/cli/full_path/run.sh.exp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters