Osservando l'output di env
, ho notato che esiste anche la seguente funzione.
BASH_FUNC_mc%%=() { . /usr/share/mc/mc-wrapper.sh
}
Il contenuto del file /usr/share/mc/mc-wrapper.sh è il seguente.
MC_USER=`id | sed 's/[^(]*(//;s/).*//'`
MC_PWD_FILE="${TMPDIR-/tmp}/mc-$MC_USER/mc.pwd.$$"
/usr/bin/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
Cosa significano i %%
caratteri nel nome della funzione? La rendono la funzione invocata in casi specifici o mi consente di chiamarla in modo diverso dalle altre funzioni?
Sto usando openSUSE 42.3, con la versione 4.3.42 (1) di Bash (x86_64-suse-linux-gnu), se questo fa la differenza.
=
segno uguale%%
! Che causa l'incarico lì.