mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
9 lines
168 B
Fish
9 lines
168 B
Fish
function mc --description "Visual shell for Unix-like systems."
|
|
set -lx SHELL sh
|
|
if which bash > /dev/null
|
|
set SHELL (which bash)
|
|
end
|
|
command mc $argv
|
|
end
|
|
|