mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-05 11:04:42 +03:00
d369b2e193
If AD authorization is used, then the "id" command works for a very long time (since it unloads all groups in the domain), it seems to me that it is more correct to use the "whoami" command. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
16 lines
306 B
Bash
16 lines
306 B
Bash
MC_USER=`whoami`
|
|
MC_PWD_FILE="${TMPDIR-/tmp}/mc-$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
|
|
unset MC_USER
|