https://github.com/mugiseyebrows/mugi-grep
Gui grep (and sed) with sessions and history
https://github.com/mugiseyebrows/mugi-grep
developer-tool grep regexp search sed text-replacer text-search utility
Last synced: 9 days ago
JSON representation
Gui grep (and sed) with sessions and history
- Host: GitHub
- URL: https://github.com/mugiseyebrows/mugi-grep
- Owner: mugiseyebrows
- License: mit
- Created: 2018-11-28T21:27:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-11-05T08:33:49.000Z (3 months ago)
- Last Synced: 2025-11-05T10:15:05.782Z (3 months ago)
- Topics: developer-tool, grep, regexp, search, sed, text-replacer, text-search, utility
- Language: C++
- Homepage:
- Size: 351 KB
- Stars: 13
- Watchers: 1
- Forks: 4
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mugi-grep
Interactive and visual `grep` and `sed` tool.
## Search action

## Replace action

# Build
## Windows Visual Studio
1) Install qt6
2) Clone sources
```bash
git clone git@github.com:mugiseyebrows/mugi-grep.git
```
3) Open `x64 Native Tools Command Prompt`
5) Navigate to sources `cd "%USERPROFILE%\mugi-grep"`
6) Create `build` directory and build
```bash
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
```
## Windows MinGW
1) Install qt6
2) Clone sources
```bash
git clone git@github.com:mugiseyebrows/mugi-grep.git
```
3) Add gcc, cmake and ninja to `%PATH%`
4) Create `build` directory and build
```bash
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
```
## Linux (Ubuntu) GCC
```bash
# install toolchain and qt
sudo apt update
sudo apt install build-essential qt6-base-dev ninja-build cmake git
# clone sources
git clone git@github.com:mugiseyebrows/mugi-grep.git
cd mugi-grep
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
# installs to /usr/local/bin
sudo cmake --install .
# creates desktop file, copies icons
python3 desktop.py
```
# Binaries
Compiled windows binaries with all dependencies are available in [releases tab](https://github.com/mugiseyebrows/mugi-grep/releases)
# Contribute
You are welcome to submit issues questions and pull requests.