{"id":16753041,"url":"https://github.com/fdncred/nu_plugin_jwalk","last_synced_at":"2025-03-21T22:32:13.918Z","repository":{"id":204038818,"uuid":"710969977","full_name":"fdncred/nu_plugin_jwalk","owner":"fdncred","description":"Experimental nushell plugin that uses the jwalk crate.","archived":false,"fork":false,"pushed_at":"2025-02-10T15:43:03.000Z","size":93,"stargazers_count":7,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-01T10:37:02.260Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fdncred.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-27T21:08:42.000Z","updated_at":"2025-02-10T15:42:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"6888a5f0-5eef-49bd-9ff3-cf76e55fc91e","html_url":"https://github.com/fdncred/nu_plugin_jwalk","commit_stats":null,"previous_names":["fdncred/nu_plugin_jwalk"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdncred%2Fnu_plugin_jwalk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdncred%2Fnu_plugin_jwalk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdncred%2Fnu_plugin_jwalk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fdncred%2Fnu_plugin_jwalk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fdncred","download_url":"https://codeload.github.com/fdncred/nu_plugin_jwalk/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244166694,"owners_count":20409178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T02:48:59.442Z","updated_at":"2025-03-21T22:32:13.667Z","avatar_url":"https://github.com/fdncred.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nu_plugin_jwalk\n\n`jwalk` is an experimental nushell plugin that uses the `jwalk` crate.\n\n## Usage:\n```nushell\n❯ jwalk --help\nView jwalk results of walking the path.\n\nUsage:\n  \u003e jwalk {flags} \u003cpath\u003e\n\nFlags:\n  -h, --help - Display the help message for this command\n  -v, --verbose - run in verbose mode with multi-column output\n  -s, --sort - sort by file name\n  -c, --custom - custom hard-coded walker with process_read_dir\n  -k, --skip-hidden - skip hidden files\n  -f, --follow-links - follow symbolic links\n  -d, --debug - print performance metrics at the end of the table\n  -m, --min-depth \u003cInt\u003e - minimum depth to search\n  -x, --max-depth \u003cInt\u003e - maximum depth to search\n  -t, --threads \u003cInt\u003e - number of rayon threads to use\n\nParameters:\n  path \u003cstring\u003e: path to jwalk\n\nExamples:\n  Walk the process working directory in debug mode with 2 threads and max depth of 1\n  \u003e jwalk --debug --max-depth 1 --threads 2 (pwd)\n\n  Walk the process working directory in debug mode with 2 threads and max depth of 1 using verbose\n  \u003e jwalk --debug --verbose --max-depth 1 --threads 2 (pwd)\n```\n\n## Examples\n### Example 1\njwalk with one column output, with debug info using 4 threads and a max depth of 1\n```\n❯ jwalk c:\\Users\\username\\source\\repos\\forks\\nushell --debug --threads 4 --max-depth 1\n╭────┬──────────────────────────────────────────────────────────────────╮\n│  0 │ c:\\Users\\username\\source\\repos\\forks\\nushell                     │\n│  1 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.cargo              │\n│  2 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.git                │\n│  3 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.gitattributes      │\n│  4 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.githooks           │\n│  5 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.github             │\n│  6 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.gitignore          │\n│  7 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\.vscode             │\n│  8 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\assets              │\n│  9 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\benches             │\n│ 10 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\Cargo.lock          │\n│ 11 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\Cargo.toml          │\n│ 12 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\CITATION.cff        │\n│ 13 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\CODE_OF_CONDUCT.md  │\n│ 14 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\CONTRIBUTING.md     │\n│ 15 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\crates              │\n│ 16 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\Cross.toml          │\n│ 17 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\devdocs             │\n│ 18 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\docker              │\n│ 19 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\LICENSE             │\n│ 20 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\README.md           │\n│ 21 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\rust-toolchain.toml │\n│ 22 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\scripts             │\n│ 23 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\src                 │\n│ 24 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\target              │\n│ 25 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\tests               │\n│ 26 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\toolkit.nu          │\n│ 27 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\typos.toml          │\n│ 28 │ c:\\Users\\username\\source\\repos\\forks\\nushell\\wix                 │\n│ 29 │ Running with these options:                                      │\n│    │   sort: false                                                    │\n│    │   skip_hidden: false                                             │\n│    │   follow_links: false                                            │\n│    │   min_depth: 0                                                   │\n│    │   max_depth: 1                                                   │\n│    │   threads: Some(4)                                               │\n│    │ Time: 1.0024ms                                                   │\n╰────┴──────────────────────────────────────────────────────────────────╯\n```\n### Example 2\njwalk with multi-column output and debug info with 4 threads and a max depth of 1\n```nushell\n❯ jwalk . --debug --max-depth 1 --threads 2 --verbose\n╭─#──┬────depth────┬────client_state────┬──file_name───┬─full_path─┬─is_dir─┬─is_file─┬─is_symlink─┬─parent_path─┬path_is_symlink┬─accessed─┬─created─┬─modified─┬─size─┬readonly╮\n│ 0  │           0 │ false              │ nushell      │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ an hour  │ a year  │ an hour  │ 1056 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src     │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell  │        │         │            │             │               │          │         │          │      │        │\n│ 1  │           1 │ false              │ CODE_OF_COND │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ a year   │ a year  │ a year   │ 3444 │ false  │\n│    │             │                    │ UCT.md       │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ CODE_OF_C │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ ONDUCT.md │        │         │            │             │               │          │         │          │      │        │\n│ 2  │           1 │ false              │ Cargo.toml   │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ a day    │ a day   │ a day    │ 9040 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ Cargo.tom │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ l         │        │         │            │             │               │          │         │          │      │        │\n│ 3  │           1 │ false              │ toolkit.nu   │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 2 months │ 2       │ 2 months │ 1964 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │ 4    │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ toolkit.n │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ u         │        │         │            │             │               │          │         │          │      │        │\n│ 4  │           1 │ false              │ .githooks    │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 6 months │ 6       │ 6 months │  128 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ .githooks │        │         │            │             │               │          │         │          │      │        │\n│ 5  │           1 │ false              │ typos.toml   │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 3 weeks  │ 3 weeks │ 3 weeks  │  499 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │  ago    │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ typos.tom │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ l         │        │         │            │             │               │          │         │          │      │        │\n│ 6  │           1 │ false              │ .fleet       │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ a year   │ a year  │ a year   │   96 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ .fleet    │        │         │            │             │               │          │         │          │      │        │\n│ 7  │           1 │ false              │ crates       │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ a month  │ a year  │ a month  │ 1344 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ crates    │        │         │            │             │               │          │         │          │      │        │\n│ 8  │           1 │ false              │ docker       │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 3 weeks  │ a year  │ 3 weeks  │   96 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ docker    │        │         │            │             │               │          │         │          │      │        │\n│ 9  │           1 │ false              │ .DS_Store    │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 2 weeks  │ 6       │ an hour  │ 6148 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ months  │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ .DS_Store │        │         │            │             │               │          │         │          │      │        │\n│ 10 │           1 │ false              │ LICENSE      │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 6 months │ 6       │ 6 months │ 1094 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ LICENSE   │        │         │            │             │               │          │         │          │      │        │\n│ 11 │           1 │ false              │ CITATION.cff │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 2 months │ 2       │ 2 months │  812 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ CITATION. │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ cff       │        │         │            │             │               │          │         │          │      │        │\n│ 12 │           1 │ false              │ target       │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 weeks  │ 2 weeks │ 2 weeks  │  224 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │  ago    │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ target    │        │         │            │             │               │          │         │          │      │        │\n│ 13 │           1 │ false              │ Cross.toml   │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 5 months │ 5       │ 5 months │  666 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ Cross.tom │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ l         │        │         │            │             │               │          │         │          │      │        │\n│ 14 │           1 │ false              │ devdocs      │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 months │ 4       │ 2 months │  224 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ devdocs   │        │         │            │             │               │          │         │          │      │        │\n│ 15 │           1 │ false              │ tests        │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 months │ a year  │ 2 months │  544 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ ago     │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ tests     │        │         │            │             │               │          │         │          │      │        │\n│ 16 │           1 │ false              │ Cargo.lock   │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ a day    │ a day   │ a day    │ 1755 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │ 80   │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ Cargo.loc │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ k         │        │         │            │             │               │          │         │          │      │        │\n│ 17 │           1 │ false              │ README.md    │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ a month  │ a month │ a month  │ 1228 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │  ago    │ ago      │ 3    │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ README.md │        │         │            │             │               │          │         │          │      │        │\n│ 18 │           1 │ false              │ .cargo       │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ a month  │ a year  │ a month  │   96 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ .cargo    │        │         │            │             │               │          │         │          │      │        │\n│ 19 │           1 │ false              │ .gitignore   │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 6 months │ 6       │ 6 months │  660 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ .gitignor │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ e         │        │         │            │             │               │          │         │          │      │        │\n│ 20 │           1 │ false              │ CONTRIBUTING │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 2 months │ 2       │ 2 months │ 1122 │ false  │\n│    │             │                    │ .md          │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │ 4    │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ CONTRIBUT │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ ING.md    │        │         │            │             │               │          │         │          │      │        │\n│ 21 │           1 │ false              │ scripts      │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 weeks  │ 6       │ 2 weeks  │  416 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ months  │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ scripts   │        │         │            │             │               │          │         │          │      │        │\n│ 22 │           1 │ false              │ .github      │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 weeks  │ a year  │ 2 weeks  │  224 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ .github   │        │         │            │             │               │          │         │          │      │        │\n│ 23 │           1 │ false              │ .gitattribut │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 6 months │ 6       │ 6 months │  111 │ false  │\n│    │             │                    │ es           │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ .gitattri │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ butes     │        │         │            │             │               │          │         │          │      │        │\n│ 24 │           1 │ false              │ benches      │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 weeks  │ 6       │ 2 weeks  │  128 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ months  │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ benches   │        │         │            │             │               │          │         │          │      │        │\n│ 25 │           1 │ false              │ wix          │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 2 months │ a year  │ 2 months │  160 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ ago     │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ wix       │        │         │            │             │               │          │         │          │      │        │\n│ 26 │           1 │ false              │ rust-toolcha │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 2 months │ 2       │ 2 months │ 1106 │ false  │\n│    │             │                    │ in.toml      │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ months  │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │ ago     │          │      │        │\n│    │             │                    │              │ rust-tool │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ chain.tom │        │         │            │             │               │          │         │          │      │        │\n│    │             │                    │              │ l         │        │         │            │             │               │          │         │          │      │        │\n│ 27 │           1 │ false              │ .mailmap     │ /Users/fd │ false  │ true    │ false      │ /Users/fdnc │ false         │ 4 months │ 2 years │ 4 months │ 2036 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │  ago    │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ .mailmap  │        │         │            │             │               │          │         │          │      │        │\n│ 28 │           1 │ false              │ .git         │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ an hour  │ a year  │ 2 hours  │  608 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ .git      │        │         │            │             │               │          │         │          │      │        │\n│ 29 │           1 │ false              │ .vscode      │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ a year   │ a year  │ a year   │  128 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ .vscode   │        │         │            │             │               │          │         │          │      │        │\n│ 30 │           1 │ false              │ assets       │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ 6 months │ a year  │ 6 months │  160 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │  ago     │ ago     │  ago     │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ assets    │        │         │            │             │               │          │         │          │      │        │\n│ 31 │           1 │ false              │ src          │ /Users/fd │ true   │ false   │ false      │ /Users/fdnc │ false         │ a week   │ a year  │ a week   │  384 │ false  │\n│    │             │                    │              │ ncred/src │        │         │            │ red/src/nus │               │ ago      │ ago     │ ago      │      │        │\n│    │             │                    │              │ /nushell/ │        │         │            │ hell        │               │          │         │          │      │        │\n│    │             │                    │              │ src       │        │         │            │             │               │          │         │          │      │        │\n│ 32 │ sort: false │ skip_hidden: false │ follow_links │ min_depth │ max_de │ threads │ time:      │          ❎ │            ❎ │       ❎ │      ❎ │       ❎ │   ❎ │     ❎ │\n│    │             │                    │ : false      │ : 0       │ pth: 1 │ : 2     │ 612.834µs  │             │               │          │         │          │      │        │\n╰─#──┴────depth────┴────client_state────┴──file_name───┴─full_path─┴─is_dir─┴─is_file─┴─is_symlink─┴─parent_path─┴─path_is_symli─┴─accessed─┴─created─┴─modified─┴─size─┴─readon─╯\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdncred%2Fnu_plugin_jwalk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffdncred%2Fnu_plugin_jwalk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffdncred%2Fnu_plugin_jwalk/lists"}