Skip to content

mugiseyebrows/mugi-grep

Repository files navigation

Mugi-grep

Interactive and visual grep and sed tool.

Search action

Replace action

Build

Windows Visual Studio

  1. Install qt6
  2. Clone sources
git clone git@github.com:mugiseyebrows/mugi-grep.git
  1. Open x64 Native Tools Command Prompt
  2. Navigate to sources cd "%USERPROFILE%\mugi-grep"
  3. Create build directory and build
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .

Windows MinGW

  1. Install qt6
  2. Clone sources
git clone git@github.com:mugiseyebrows/mugi-grep.git
  1. Add gcc, cmake and ninja to %PATH%
  2. Create build directory and build
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .

Linux (Ubuntu) GCC

# 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

Contribute

You are welcome to submit issues questions and pull requests.