sprintf
[options] FILES...
Print files using the specified sprintf format. Reads from stdin if no files are specified. Use '-' as a file to specify stdin manually. By default the input is not changed (equivalent to -c).
These options control how sprintf
operates:
-
-b
: binary output -
-c
: string output -
-d
: debug mode -
-f FORMAT
: custom format -
-h
,--help
: print this help -
-o
: octal output -
-x
: hex output
Add sprintf
to your PATH (or execute it directly). A nice way of doing so is
to clone the repo and add the bin dir to PATH. This allows easy updates via
git pull
and should make the manpages available via man sprintf
.
git clone git://gist.github.com/2638925.git
export PATH="$PATH:$(pwd)/2638925/bin"