mc.profile 332 B

123456789101112131415
  1. # A little fix so mc exits into it's current working directory
  2. export MC_ENV=/usr/share/mc/bin/mc.sh
  3. for i in $MC_ENV; do
  4. if [ -x $i ]; then
  5. . $i
  6. fi
  7. done
  8. # include this, so also xterm,kterm,gterm,etc will have default bash settings
  9. #if [ "x$SHLVL" != "x1" ]; then # We're not a login shell
  10. # . /etc/profile
  11. #fi