17 lines
207 B
Bash
Executable File
17 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ $# -ge 1 ] || {
|
|
cat > /dev/null
|
|
exit 0
|
|
}
|
|
|
|
case $1 in
|
|
-R|--requires)
|
|
shift
|
|
grep "/usr/\(lib[^/]*\|share\)/python[^/]*/" >/dev/null && echo "python"
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
exit 0
|