mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
f218f0224e
script is not meant to be executed by the kernel. This also eliminates dependency of the RPM package on csh. * lib/mc-wrapper.sh.in: Remove /bin/sh at the beginning.
14 lines
270 B
Bash
14 lines
270 B
Bash
MC_PWD_FILE="${TMPDIR-/tmp}/mc-$USER/mc.pwd.$$"
|
|
@bindir@/mc -P "$MC_PWD_FILE" "$@"
|
|
|
|
if test -r "$MC_PWD_FILE"; then
|
|
MC_PWD="`cat $MC_PWD_FILE`"
|
|
if test -n "$MC_PWD" && test -d "$MC_PWD"; then
|
|
cd "$MC_PWD"
|
|
fi
|
|
unset MC_PWD
|
|
fi
|
|
|
|
rm -f "$MC_PWD_FILE"
|
|
unset MC_PWD_FILE
|