1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
326 B

#!/bin/bash
# Open Python PDF docs.
if [ ! -v PYTHON_DOCS_PATH ]; then
echo "You need to define PYTHON_DOCS_PATH."
exit
fi
if [[ -n "$1" ]]; then
filename="$(find "$PYTHON_DOCS_PATH" -type f -name "*$1*" | head -n 1)"
else
filename="$PYTHON_DOCS_PATH/library.pdf"
fi
nohup open "$filename" > /dev/null 2>&1