9 lines
109 B
Bash
Executable file
9 lines
109 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ $# -ne 1 ]
|
|
then
|
|
echo 'gimme erlang module, pls'
|
|
exit 1
|
|
fi
|
|
|
|
erl -man "$1" | nobs+
|