null-cat
is a program that will print a file until a null character (\0
) is reached. The null character will
not be printed.
To build a .deb
file of null-cat
, you need a few things. First, I've tested this on Debian 11, so I suggest
using that.
- To install the required packages, run
sudo apt-get update -y && sudo apt-get install git devscripts build-essential lintian pandoc -y
. - Clone the Git repo (
git clone https://github.com/CoconutMacaroon/null-cat.git
) cd
into the directory (cd null-cat
)- Build it by running the build script (
./build
). - The built
.deb
files will be in the parent directory of the Git repo. Assuming you have been following along, you can navigate there by doingcd ..