csh에서 mc상태에서 디렉토리 변경해도 mc를 끄고나면 원래 디렉토리로 돌아와 버립니다.
글쓴이: foruses / 작성시간: 금, 2007/05/18 - 2:37오후
csh (suse linux)에서,
1. mc 실행 후,
2. 원하는 디렉토리로 변경한 후,
3. mc를 끄고, prompt 상태로 되돌아 오면,
변경된 디렉토리가 아닌, mc를 실행하기 이전의 디렉토리로 되돌아와 버립니다. bash 상태에서는 mc에서 변경된 디렉토리가 끄고 나도 그대로 유지가 되었는데, csh에서 어떻게 해결해야되죠.
이 문제 때문에 프로그래밍 도중 멀쩡한 파일 지우는 등 실수한 적이 너무 자주 있어서, 이제 도저히 못넘어 가겠습니다.
감사합니다.
Forums:
..-_-a
일단 제 경우는 csh이던 bash이던 정상적으로 디렉토리 이동을 하는것을 확인을 하였습니다만, 혹시나 잘 되지 않으시면 사용자 계정의 .mc 디렉토리를 삭제 후 다시 이용해 보도록 하세요.
~/.mc/ini 파일 안에 보시면 [Dirs] 항목에 current_is_left 라는 항목이 지금 원하시는 기능을 지원하는 설정이며, 1이 기본값으로 되어있습니다.
====================여기부터 식인어흥====================
어흥 몰라 어흥? 호랑이 어흥!! 떡 하나 주면 어흥!! 떡 두개 주면 어흥어흥!!
~/.bashrc에 이렇게
~/.bashrc에 이렇게 추가하삼
------
불가능, 그것은 아무 것도 아니다
mc-wrapper 을 이용하세요
mc-wrapper 을 이용하세요
alias mc=". /usr/share/mc/bin/mc-wrapper.sh"
출처 http://ptspts.blogspot.de/2010/01/how-to-make-midnight-commander-exit-to.html
How to make Midnight Commander exit to its current directory
This blog post gives instructions how to make the current directory of the shell calling Midnight Commander be mc's current directory upon exiting from mc.
The quick answer is to add alias mc=". /usr/share/mc/bin/mc-wrapper.sh" (or something similar, with a different path) to your shell startup script. If you don't know how to do that, read on.
On Ubuntu (Hardy, Jaunty, Karmic etc.) or Debian (Lenny etc.), run this as root (copy-paste as a whole):
grep -l bash\.bashrc /etc/profile || (echo
echo 'test "$PS1" && test "$BASH" && . /etc/bash.bashrc') |
tee -a /etc/profile
echo 'type -p -a mc >/dev/null &&
alias mc=". /usr/share/mc/bin/mc-wrapper.sh"' | tee -a /etc/bash.bashrc
On the Mac OS/X with mc installed from MacPorts, open a Terminal window, type sudo bash, press Enter, type your password, press Enter, and then run the following (copy-paste as a whole):
grep -l bashrc /etc/profile || (echo
echo 'test "$PS1" && test "$BASH" && . /etc/bashrc') |
tee -a /etc/profile
echo 'type -p -a mc >/dev/null &&
alias mc=". /opt/local/share/mc/bin/mc-wrapper.sh"' | tee -a /etc/bashrc
After doing so, open a new terminal window (or SSH connection), and it should work as expected (try it by running mc /tmp, and exiting by pressing Esc, 0, Enter).
For your information, the underlying solution (in mc-wrapper.sh) makes Midnight Commander print its current directory when it exits, and then the caller shell code does a cd command to that directory.
댓글 달기