{"id":43422613,"url":"https://github.com/thaigoonch/findyshark","last_synced_at":"2026-02-02T18:55:05.505Z","repository":{"id":57641125,"uuid":"428508349","full_name":"thaigoonch/findyshark","owner":"thaigoonch","description":"A recursive-searching CLI tool for Linux. Written in Go. This is for a university project for IT3510.","archived":false,"fork":false,"pushed_at":"2021-12-17T04:06:04.000Z","size":61,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-20T17:43:00.981Z","etag":null,"topics":["bash","cli","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thaigoonch.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-16T03:47:24.000Z","updated_at":"2022-11-28T18:00:31.000Z","dependencies_parsed_at":"2022-09-05T04:41:55.911Z","dependency_job_id":null,"html_url":"https://github.com/thaigoonch/findyshark","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thaigoonch/findyshark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaigoonch%2Ffindyshark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaigoonch%2Ffindyshark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaigoonch%2Ffindyshark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaigoonch%2Ffindyshark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thaigoonch","download_url":"https://codeload.github.com/thaigoonch/findyshark/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaigoonch%2Ffindyshark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29017938,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T18:51:31.335Z","status":"ssl_error","status_checked_at":"2026-02-02T18:49:20.777Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bash","cli","go","golang"],"created_at":"2026-02-02T18:55:05.445Z","updated_at":"2026-02-02T18:55:05.499Z","avatar_url":"https://github.com/thaigoonch.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# findyshark\n\nA recursive-searching CLI tool for Linux\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Config](#config)\n- [Usage](#usage)\n\n## Installation\n\n### Install Dependencies\n\n#### Install Go\n\nhttps://go.dev/doc/install\n\ne.g. after verifying Go isn't already installed:\n\n``` bash\nwget https://golang.org/dl/go1.17.3.linux-amd64.tar.gz\nsudo tar -C /usr/local -xzf go1.17.3.linux-amd64.tar.gz\n```\n\nAdd /usr/local/go/bin to the PATH environment variable\n\ne.g. in `~/.bash_profile`:\n\n```  bash\nexport GOPATH=$HOME/go\nexport GOBIN=$GOPATH/bin\nexport GOROOT=/usr/local/go\nexport PATH=$PATH:$GOROOT/bin:$GOPATH/bin\n```\n\nReload the profile file; e.g.\n``` bash\nsudo source ~/.bash_profile\n```\n\nVerify Go is installed; e.g.\n\n``` bash\n$ go version\ngo version go1.17.3 linux/amd64\n```\n\n#### Install Other Dependencies\n\nInstall `make`; e.g.\n``` bash\nsudo yum install make\n```\n\nInstall `goxc`; e.g.\n``` bash\ngo get -v github.com/laher/goxc\n```\n\nInstall `shc`; e.g.\n``` bash\nsudo yum install http://repo.okay.com.mx/centos/7/x86_64/release/okay-release-1-1.noarch.rpm\nsudo yum install shc\n```\n\nInstall GCC; e.g.\n``` bash\nsudo yum group install \"Development Tools\"\nsudo yum install man-pages\n```\n\n### Install `findyshark`\n\nClone this repo; e.g.\n``` bash\ngit clone https://github.com/thaigoonch/findyshark.git\n```\n\nNavigate to the `findyshark` repo; e.g.\n``` bash\ncd findyshark\n ```\n\nBuild and install\n\nRun:\n``` bash\nmake install\n```\n\nVerify `findyshark` is installed; e.g.\n``` bash\n$ findyshark version\nfindyshark '0.0.2'\n```\n\nNote: Do not move the installed binary files out of the `$(GOPATH)/bin/` location, or the program will not work. If you need to put them elsewhere, make sym links.\n\n## Config\n\nOptionally, create a config file at `$HOME/.findyshark.yaml`\n\nSet the `ignore` variable to a value or a comma-separated list of values. These should specify files and directories you want findyshark to exclude in\n\ne.g. to ignore all `vendor`, `.git` directories and `go.sum`, `go.mod` files, in `$HOME/.findyshark.yaml`:\n\n``` bash\nignore: .*/vendor/*,*/.git/*,*/go.sum,*/go.mod\n```\n\nNote: do not put a `*` as the first character. The CLI will not read in the ignores if you do. If you need to do so, put a `.` before it like in the example above.\n\n## Usage\n\nRuns out of pwd.\n\n### To run:\n``` bash\n  findyshark [flags]\n  findyshark [command]\n```\n\n#### Available Commands:\n\n  `completion`  generate the autocompletion script for the specified shell\n  \n  `help`        Help about any command\n  \n  `version`     Show findyshark version\n  \n\n#### Flags:\n\n`--config` - path to config file (default is `$HOME/.findyshark.yaml`)\n\n`-e`, `--extension` - search in specified file extension; e.g. `txt`\n\n`-h`, `--help` - help for findyshark\n\n`-i`, `--insensitive` - search case-insensitive\n\n\n### Example output:\n```\n        _________         .    .\n       (..       \\_    ,  |\\  /|    +-+-+-+-+-+-+            dooo\n        \\       0  \\  /|  \\ \\/ /    |findy|shark|                    doo doo\n         \\______    \\/ |   \\  /     +-+-+-+-+-+-+      doo                        da-doo\n           vvvvv       |  /   |\n            ^^^^       \\_/    )     Using config file: /home/it3510/.findyshark.yaml\n             `\\_   )))       /\n             / /\\_   \\ /    /       Ignoring: .*/vendor/*,*/.git/*,*/go.sum,*/go.mod\n             |/   \\___\\|___/\n                       v\n\nfind:\ngithub\n╭─────────────────────────────┬─────┬───────────────────────────────────────────────╮\n│ FILENAME                    │ LN# │ RESULT                                        │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./main.go                   │ 26  │ // from github                                │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./my_vendor/myTermstxt      │ 1   │ find, file, vendor, shark, github             │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./app/table.go              │ 8   │     \"github.com/jedib0t/go-pretty/v6/table\"   │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./app/table.go              │ 9   │     \"github.com/jedib0t/go-pretty/v6/text\"    │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./cmd/root.go               │ 24  │     homedir \"github.com/mitchellh/go-homedir\" │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./cmd/root.go               │ 25  │     \"github.com/spf13/cobra\"                  │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ ./cmd/root.go               │ 26  │     \"github.com/spf13/viper\"                  │\n├─────────────────────────────┼─────┼───────────────────────────────────────────────┤\n│ FOUND 7 RESULTS IN 4 FILES. │     │                                               │\n╰─────────────────────────────┴─────┴───────────────────────────────────────────────╯\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthaigoonch%2Ffindyshark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthaigoonch%2Ffindyshark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthaigoonch%2Ffindyshark/lists"}