mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
ea0a0991a1
In case someone doesn't even have a `python3` symlink.
10 lines
289 B
Fish
10 lines
289 B
Fish
function __fish_anypython
|
|
# Try python3 first, because that's usually faster and generally nicer.
|
|
for py in python3 python3.{9,8,7,6,5,4,3} python2 python2.7 python
|
|
command -sq $py
|
|
and echo $py
|
|
and return 0
|
|
end
|
|
# We have no python.
|
|
return 1
|
|
end
|