Writes image data from memory to disk in PPM 3 format
git clone git+https://github.com/Num0Programmer/ppm-writer.git
cd ppm-writer
cargo build --release
From within the repository
./target/release/ppmw
You can also opt to make an alias to the binary
alias ppmw="$PWD/target/release/ppmw"
Then, you can use the alias to run the program from anywhere in the system
ppmw
Alternatively, you can copy the binary to /usr/local/bin
cp target/release/ppmw /usr/local/bin
This also allows you to run the program from anywhere without the need to maintain an alias