Created
May 6, 2020 20:40
-
-
Save dragolabs/c5726432e7b9f2bc6894e99fd18f7b6f to your computer and use it in GitHub Desktop.
Stay in the current directory after closing mc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Midnight Commander magic | |
if [ -f /usr/local/opt/midnight-commander/libexec/mc/mc-wrapper.sh ]; then | |
alias mc='. /usr/local/opt/midnight-commander/libexec/mc/mc-wrapper.sh' | |
elif [ -f /usr/lib/mc/mc-wrapper.sh ]; then | |
alias mc='. /usr/lib/mc/mc-wrapper.sh' | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment