Skip to content
Snippets Groups Projects
Commit 719273df authored by Daniel Maier's avatar Daniel Maier
Browse files

add perforate.sh

parent ec400377
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
usage() {
printf "%s: <input_program> <output_program>\n" "$0"
}
if [ $# -ne 2 ]; then
usage
exit 1
fi
input="$1"
output="$2"
printf "input is \"%s\" output is \"%s\"" "$input" "$output"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment