mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 19:03:38 +08:00
c392a05db0
NetBSD!!!!! *shakes fist*
11 lines
275 B
Fish
11 lines
275 B
Fish
function __fish_anypython
|
|
# Try python3 first, because that's usually faster and generally nicer.
|
|
for py in python3 python3.7 python2 python2.7 python
|
|
command -sq $py
|
|
and echo $py
|
|
and return 0
|
|
end
|
|
# We have no python.
|
|
return 1
|
|
end
|