mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-11-30 20:54:21 +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
|
|
|