mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
11 lines
252 B
Fish
11 lines
252 B
Fish
|
function __fish_anypython
|
||
|
# Try python3 first, because that's usually faster and generally nicer.
|
||
|
for py in python3 python2 python
|
||
|
command -sq $py
|
||
|
and echo $py
|
||
|
and return 0
|
||
|
end
|
||
|
# We have no python.
|
||
|
return 1
|
||
|
end
|