add launcher for pyreverse PDF diagrams generator
This commit is contained in:
parent
eaf40e8c58
commit
41a853dbad
1 changed files with 15 additions and 0 deletions
15
tools/pyreverse.sh
Executable file
15
tools/pyreverse.sh
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Examples:
|
||||
# pyreverse.sh weboob.backends.aum
|
||||
#
|
||||
# pyreverse is included in pylint Debian package
|
||||
|
||||
function usage() {
|
||||
echo "pyreverse.sh <package_name>"
|
||||
exit
|
||||
}
|
||||
|
||||
[ -z "$1" ] && usage
|
||||
|
||||
pyreverse -p "$1" -a1 -s1 -o pdf "$1"
|
||||
Loading…
Add table
Add a link
Reference in a new issue