{"id":42377579,"url":"https://github.com/mcuntz/ido","last_synced_at":"2026-01-27T20:52:42.879Z","repository":{"id":112172653,"uuid":"183635839","full_name":"mcuntz/ido","owner":"mcuntz","description":"Collection of command line scripts.","archived":false,"fork":false,"pushed_at":"2024-03-12T22:32:45.000Z","size":50,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-12T18:32:07.701Z","etag":null,"topics":["bash","bash-script","command-line","command-line-tool","utilities"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/mcuntz.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}},"created_at":"2019-04-26T13:43:22.000Z","updated_at":"2022-05-12T22:26:14.000Z","dependencies_parsed_at":"2024-03-12T22:50:08.471Z","dependency_job_id":null,"html_url":"https://github.com/mcuntz/ido","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mcuntz/ido","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcuntz%2Fido","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcuntz%2Fido/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcuntz%2Fido/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcuntz%2Fido/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mcuntz","download_url":"https://codeload.github.com/mcuntz/ido/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mcuntz%2Fido/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28822237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T18:44:20.126Z","status":"ssl_error","status_checked_at":"2026-01-27T18:44:09.161Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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","bash-script","command-line","command-line-tool","utilities"],"created_at":"2026-01-27T20:52:39.655Z","updated_at":"2026-01-27T20:52:42.871Z","avatar_url":"https://github.com/mcuntz.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ido\nCollection of command line scripts.\n\nAll scripts have -h command line option displaying a help screen.\n\n### Scripts\n\n| | | |\n| --- | --- | ------------------------------------------------------------------------------------------------------------- |\n| | catfiles | Concatenate files with identical headers. Leaves header of first file and removes all subsequent headers. |\n| | cleanlatexdiff | Clean internal LaTeX commands of latexdiff output to simple \\add and \\del commands. |\n| | cutbyname | Wrapper of cut command where one specifies the fields by name in a header line. |\n| | diffdirs | Compare two directories, giving formatted output. |\n| | ido\\_bash\\_completion | source ido\\_bash\\_complete in .bash\\_profile to get completion of command line options of all ido scripts with tab. |\n| | ido\\_lib.sh | Library with helper functions for bash scripts. |\n| | iinvert | Invert colours or colour channel in image using ImageMagick. |\n| | irename | Batch rename several files using an sed expression. |\n| | ireplace | Applies sed expression on several files, e.g. replacing a string in the files. |\n| | ireverse | Reverses the lines in a file leaving a header. |\n| | itranspose | Transposes a file and writes it to standard out, optionally removing a header. |\n| | izip | Wrapper for zip utility: if 'izip directory' then 'zip -r directory.zip directory' will be called. |\n| | unix2mac | Converts unix, dos/windows and mac text file formats into each other. Other names: mac2unix, mac2win, unix2win, win2mac, win2unix |\n| | psmerge | Merges several pdf or postscript files into one single pdf or postscript file. Other names: pdfmerge |\n| | pssplit | Splits pdf or postscript file into files with individual pages using ghostscript. Other names: pdfsplit |\n\n### Examples\n\n| | |\n| --- | --------------------------------------------------------- |\n| | % catfiles -n 1 -o out infile* |\n| | % latexdiff --flatten old.tex new.tex \\| cleanlatexdiff \u003e diff.tex |\n| | % sed 's/2002/2003/' infile \\| cutbyname -f 'date,co2' -d ',' \\| tr ',' ' ' \u003e outfile |\n| | % diffdirs -n dir1 dir2 |\n| | % iinvert -s LCH -c C -d 600 -o image.png image.pdf |\n| | % irename -f 's/DSC\\_/Photo/' \\*.jpg |\n| | % ireplace '/exp/s/exp=.\\*/exp=moc01/' moc.\\* |\n| | % ireverse -s 1 infile \u003e outfile |\n| | % itranspose -s 1 -d ',' -c infile \u003e outfile |\n| | % izip mydir |\n| | % win2unix -q \\*.txt |\n| | % pdfmerge -o all.pdf \\*.pdf \\*.ps |\n| | % pdfsplit in.pdf pages\\_ |\n| | % source ipop\\_lib.sh ; what='m' ; list=$(echo {a..z}) ; ihave=$(isin ${what} ${list}) ; if [[ -n ${ihave} ]] echo \"I have an ${what}.\" ; fi |\n\n__Copyright (c) 2012-2023 Matthias Cuntz - mc (at) macu (dot) de__\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcuntz%2Fido","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmcuntz%2Fido","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmcuntz%2Fido/lists"}