mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-12-04 15:53:45 +08: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
|
||
|
|