{"id":27329603,"url":"https://github.com/filipporaciti/search-string-in-files","last_synced_at":"2026-04-14T04:02:28.804Z","repository":{"id":156003225,"uuid":"631001537","full_name":"filipporaciti/Search-String-In-Files","owner":"filipporaciti","description":"Command line tool that search strings in all files of a directory","archived":false,"fork":false,"pushed_at":"2023-05-09T16:46:17.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T13:00:53.618Z","etag":null,"topics":["bash","files","python","python3","search"],"latest_commit_sha":null,"homepage":"","language":"Python","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/filipporaciti.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-04-21T17:02:32.000Z","updated_at":"2023-04-21T22:38:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"c4fe078a-8b56-4b7e-bafd-f1d37dfa451f","html_url":"https://github.com/filipporaciti/Search-String-In-Files","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/filipporaciti/Search-String-In-Files","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipporaciti%2FSearch-String-In-Files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipporaciti%2FSearch-String-In-Files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipporaciti%2FSearch-String-In-Files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipporaciti%2FSearch-String-In-Files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/filipporaciti","download_url":"https://codeload.github.com/filipporaciti/Search-String-In-Files/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/filipporaciti%2FSearch-String-In-Files/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272871700,"owners_count":25007213,"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-08-30T02:00:09.474Z","response_time":77,"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":["bash","files","python","python3","search"],"created_at":"2025-04-12T12:58:52.616Z","updated_at":"2026-04-14T04:02:23.756Z","avatar_url":"https://github.com/filipporaciti.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Search-String-In-Files\n\n## Use\nGiving a string and the path of the directory where you want to search, this program give to you every files and the row where this string is.\n\n### Basic usage\n``` bash\nssif \"local\" \"./directory\"\n\n# Output\n# ./install.sh --\u003e (0) cp ssif.py /usr/local/bin\n# ./install.sh --\u003e (1) mv /usr/local/bin/ssif.py /usr/local/bin/ssif\n# ./README.md --\u003e (7) ssif \"local\" \"./directory\"\n# ./remove.sh --\u003e (0) rm /usr/local/bin/ssif\n# ./.git/hooks/fsmonitor-watchman.sample --\u003e (64) \tlocal $, = \"\\0\";\n# ./.git/hooks/fsmonitor-watchman.sample --\u003e (107) \tmy $response = do {local $/; \u003cCHLD_OUT\u003e};\n# ./.git/hooks/pre-push.sample --\u003e (16) #   \u003clocal ref\u003e \u003clocal oid\u003e \u003cremote ref\u003e \u003cremote oid\u003e\n# ./.git/hooks/pre-push.sample --\u003e (26) while read local_ref local_oid remote_ref remote_oid\n# ./.git/hooks/pre-push.sample --\u003e (28) \tif test \"$local_oid\" = \"$zero\"\n# ./.git/hooks/pre-push.sample --\u003e (36) \t\t\trange=\"$local_oid\"\n# ./.git/hooks/pre-push.sample --\u003e (39) \t\t\trange=\"$remote_oid..$local_oid\"\n# ./.git/hooks/pre-push.sample --\u003e (46) \t\t\techo \u003e\u00262 \"Found WIP commit in $local_ref, not pushing\"\n# ./.git/hooks/push-to-checkout.sample --\u003e (37) # branches while keeping the local changes in the working tree that do\n\n```\nThe first string is the string that you want to search, while the second string is the directory.\n\n### Verbose\nYou can see also the file where the string is not here with the fiels `--verbose` or `-v`\n``` bash\nssif \"local\" \"./\" -v \n\n# Output (only first 10 lines)\n# ./install.sh --\u003e (0) cp ssif.py /usr/local/bin\n# ./install.sh --\u003e (1) mv /usr/local/bin/ssif.py /usr/local/bin/ssif\n# Not here --\u003e ./README.md\n# Not here --\u003e ./README.md\n# Not here --\u003e ./README.md\n# Not here --\u003e ./README.md\n# Not here --\u003e ./README.md\n# Not here --\u003e ./README.md\n# Not here --\u003e ./README.md\n# ./README.md --\u003e (7) ssif \"local\" \"./directory\"\n```\n\n### Blacklist\nWith this field you can set directory or file's blacklist. You can set one file/directory with tag `--blacklist fileordirectory` or more file/directory with tag `--blacklist \"1fileordirectory 2fileordirectory 3fileordirectory...\"`\n``` bash\nssif --blacklist \"README.md .git\" \"local\" \"./\"\n\n# Output \n# ./install.sh --\u003e (0) cp ssif.py /usr/local/bin\n# ./install.sh --\u003e (1) mv /usr/local/bin/ssif.py /usr/local/bin/ssif\n# ./remove.sh --\u003e (0) rm /usr/local/bin/ssif\n```\n\n\n## Install\n``` bash\nsudo ./install.sh\n```\n\n## Uninstall\n``` bash\nsudo ./remove.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffilipporaciti%2Fsearch-string-in-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffilipporaciti%2Fsearch-string-in-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffilipporaciti%2Fsearch-string-in-files/lists"}