8 lines
59 B
Plaintext
8 lines
59 B
Plaintext
|
|
if [ $# -eq 0 ]; then
|
|
man openssl
|
|
else
|
|
man $1
|
|
fi
|
|
|