5 lines
77 B
Plaintext
5 lines
77 B
Plaintext
|
#!/bin/sh
|
||
|
x=$(/usr/bin/tput cols)
|
||
|
/usr/bin/man -O width=$((x-2)) "${@}"
|
||
|
exit
|