~parinporecha/gtg/set-date-via-calendar

1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

if [ ! $# -eq 1 ]; then 
    echo "usage: $0 <man_file_path>"
    exit 1
fi
if [ ! -x "`which groff`" ]; then
    echo "please install groff"
    exit 2
fi

groff -Tascii -man $1 | more