{"id":24452995,"url":"https://github.com/maclong9/list","last_synced_at":"2025-12-11T22:56:42.473Z","repository":{"id":242335825,"uuid":"809292306","full_name":"maclong9/list","owner":"maclong9","description":"Quickly list files found in your operating system.","archived":false,"fork":false,"pushed_at":"2025-11-07T12:11:58.000Z","size":1387,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-07T14:18:33.636Z","etag":null,"topics":["cli","ls","swift","unix"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maclong9.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-02T09:25:02.000Z","updated_at":"2025-11-07T12:12:02.000Z","dependencies_parsed_at":"2025-12-08T17:04:07.960Z","dependency_job_id":null,"html_url":"https://github.com/maclong9/list","commit_stats":null,"previous_names":["maclong9/swiftlist","maclong9/swift-list","maclong9/list"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/maclong9/list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maclong9%2Flist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maclong9%2Flist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maclong9%2Flist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maclong9%2Flist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maclong9","download_url":"https://codeload.github.com/maclong9/list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maclong9%2Flist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27672063,"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","status":"online","status_checked_at":"2025-12-11T02:00:11.302Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cli","ls","swift","unix"],"created_at":"2025-01-21T01:17:56.895Z","updated_at":"2025-12-11T22:56:42.467Z","avatar_url":"https://github.com/maclong9.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SwiftList\n\n[![Swift Package Index](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fmaclong9%2Flist%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/maclong9/list)\n\nA simple and fast rebuild of the UNIX `ls` command.\n\n\u003cimg width=\"835\" height=\"1018\" alt=\"Screenshot 2025-07-11 at 12 40 58\" src=\"https://github.com/user-attachments/assets/823505e9-ad33-4e0d-8251-3ef47d48c931\" /\u003e\n\n## Installation\n\n### Download Pre-built Binaries\nDownload the latest release for your architecture:\n\n**macOS Apple Silicon (M Series):**\n```sh\nsudo mkdir -p /usr/local/bin\nsudo curl -L $(curl -s https://api.github.com/repos/maclong9/list/releases/latest | grep \"browser_download_url.*sls-aarch64\" | cut -d\\\" -f4) -o /usr/local/bin/sls\nsudo chmod +x /usr/local/bin/sls\n```\n\n**Manual Download:**\nVisit the [releases page](https://github.com/maclong9/list/releases) and download `sls-aarch64` (Apple Silicon) or `sls-x86_64` (Intel) directly.\n\n### With mise\n```sh\nmise settings experimental true\nmise install spm:maclong9/swift-list\n```\n\n### With brew\n```sh\nbrew install maclong9/tap/sls\n```\n\n### Shell Completion\nGenerate completion scripts:\n```sh\n# Bash\nsls --generate-completion-script bash \u003e ~/.bash_completions/sls.bash\n\n# Zsh\nsls --generate-completion-script zsh \u003e ~/.zsh/completion/_sls\n\n# Fish\nsls --generate-completion-script fish \u003e ~/.config/fish/completions/sls.fish\n```\n\nInstall by copying to your shell's completion directory or sourcing in your shell config.\n\n## Usage\n\n```sh\nsls [OPTIONS] [\u003cpath\u003e]\n```\n\n## Options\n\n### Display Options\n- `-a, --all` — Display all files, including hidden\n- `-l, --long` — Display file attributes, one file per line\n- `-o, --one-line` — Display each file on its own line\n- `-d, --directory` — List directories themselves, not their contents\n\n### Formatting Options\n- `-c, --color` — Colorize the output\n- `-i, --icons` — Display icons denoting file type\n- `-F, --classify` — Append indicator (/, *, etc.) to entries\n- `--human-readable` — Display human readable file sizes (KB, MB, GB)\n\n### Sorting Options\n- `-t, --sort-time` — Sort by modification time (newest first)\n- `-S, --sort-size` — Sort by file size (largest first)\n\n### Navigation Options\n- `-r, --recurse` — Recurse into directories\n\n### Help\n- `--help` — Show help information\n- `--version` — Display version information\n\n## Common Usage\n\n```sh\n# Basic listing\nsls\n\n# Detailed view with colors and icons\nsls -cli --human-readable\n\n# Show headers for clarity\nsls -l --header --human-readable\n\n# Recursive exploration\nsls -clir --human-readable\n\n# Sort by time or size\nsls -tcli --human-readable    # by time\nsls -cliS --human-readable    # by size\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaclong9%2Flist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaclong9%2Flist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaclong9%2Flist/lists"}