{"id":26257539,"url":"https://github.com/ralvarezdev/uru-programming-1-minigrep","last_synced_at":"2026-06-15T12:32:02.996Z","repository":{"id":273834803,"uuid":"700602526","full_name":"ralvarezdev/uru-programming-1-minigrep","owner":"ralvarezdev","description":"My version of Linux's Grep tool from Programming 1 college course","archived":false,"fork":false,"pushed_at":"2025-03-08T16:27:26.000Z","size":53,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-01T04:33:07.511Z","etag":null,"topics":["cpp","grep","grep-like","rafael-urdaneta-university","universidad-rafael-urdaneta","uru"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ralvarezdev.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-04T23:11:37.000Z","updated_at":"2025-03-08T16:27:29.000Z","dependencies_parsed_at":"2025-01-23T09:13:44.835Z","dependency_job_id":"20a16900-5d8f-4d41-848a-30c3e5978838","html_url":"https://github.com/ralvarezdev/uru-programming-1-minigrep","commit_stats":null,"previous_names":["ralvarezdev/minigrep","ralvarezdev/uru-programming-1-minigrep"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ralvarezdev/uru-programming-1-minigrep","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-minigrep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-minigrep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-minigrep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-minigrep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ralvarezdev","download_url":"https://codeload.github.com/ralvarezdev/uru-programming-1-minigrep/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralvarezdev%2Furu-programming-1-minigrep/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34363538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"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":["cpp","grep","grep-like","rafael-urdaneta-university","universidad-rafael-urdaneta","uru"],"created_at":"2025-03-13T21:17:04.124Z","updated_at":"2026-06-15T12:32:02.970Z","avatar_url":"https://github.com/ralvarezdev.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minigrep\n\nThis repository contains the source code of the Minigrep Terminal Program, which is based on the grep Program for Linux, developed by:\n\n## Developer\n\n- Ramón Álvarez \u003ca href=\"https://github.com/ralvarezdev\"\u003e(ralvarezdev)\u003c/a\u003e.\n\n## Programming Languages\n\nOnly C++.\n\n## Getting Started\nTo get started with the Minigrep source code, follow these instructions.\n\n## Installation\n\n\u003col\u003e\n\u003cli\u003eClone this repository to your local machine using the following command:\n\n```git clone https://github.com/ralvarezdev/uru-programming-1-minigrep```\n\u003c/li\u003e\n\n\u003cli\u003eChange your Current Working Directory to where the Repository was Cloned\u003c/li\u003e\n\n\u003cli\u003eThere are Two Ways to Compile the Program:\u003c/li\u003e\n\n\u003col\u003e\n\u003cli\u003eWith \u003cstrong\u003eG++\u003c/strong\u003e (You must have Installed \u003cstrong\u003eMinGW Compiler\u003c/strong\u003e). Use the following command:\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Windows\u003c/summary\u003e\n\n```g++ -o bin\\Minigrep.exe src\\main.cpp src\\lib\\filesOp.cpp src\\lib\\filesOp.h src\\lib\\input.cpp src\\lib\\input.h src\\lib\\rgbColor.cpp src\\lib\\rgbColor.h```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Linux\u003c/summary\u003e\n\n```g++ -o bin/Minigrep.exe src/main.cpp src/lib/filesOp.cpp src/lib/filesOp.h src/lib/input.cpp src/lib/input.h src/lib/rgbColor.cpp src/lib/rgbColor.h```\n\n\u003c/details\u003e\u003c/li\u003e\n\n\u003cli\u003eWith \u003cstrong\u003eCMake\u003c/strong\u003e (You must have Installed \u003cstrong\u003eCMake and Make\u003c/strong\u003e). First, Get to the \u003ccode\u003ebin\u003c/code\u003e Folder inside the Repository. Use the following command:\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Windows\u003c/summary\u003e\n\n```cmake -S ..\\ -G \"MinGW Makefiles\" -B .\\ \u0026\u0026 make```\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eCommand for Linux\u003c/summary\u003e\n\n```cmake -S ../ -G \"MinGW Makefiles\" -B ./ \u0026\u0026 make```\n\n\u003c/details\u003e\u003c/li\u003e\u003c/ol\u003e\n\n\u003cli\u003eRun the program by clicking the \u003ccode\u003eMinigrep.exe\u003c/code\u003e or by using a single-line command as:\n\n```./bin/main.exe phrase to find... filepath...``` (You must enter your own filepath and your own phrase to highlight).\n\u003c/li\u003e\n\u003c/ol\u003e\n\n\u003cstrong\u003eFor a Better User Experience, Resize the Terminal Window to Fullscreen\u003c/strong\u003e\n\n## Commands\n\n### Run\n```phraseToHighlight... filePath...``` To Highlight the Phrase\n\n### Change Text Colors\n```-c``` Change Background and Foreground Color\n```-b``` Change Background Color\n```-f``` Change Foreground Color\n\n### Help\n```-h``` Help\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralvarezdev%2Furu-programming-1-minigrep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fralvarezdev%2Furu-programming-1-minigrep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralvarezdev%2Furu-programming-1-minigrep/lists"}