Explorar el Código

Use md5 hex for tmp directory

master
10sr hace 6 años
padre
commit
0c20697581
Firmado por: 10sr ID de clave GPG: 7BEC428194130EB2
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      profile

+ 2
- 1
profile Ver fichero

@@ -97,7 +97,8 @@ then
fi
fi

expr "$TMP" : ".*$USER-tmp" >/dev/null || export TMP="${TMP}/${USER}-tmp"
__user_uuid=$(perl -e "use Digest::MD5 qw(md5_hex); print md5_hex('$USER$HOSTNAME')")
expr "$TMP" : ".*${__user_uuid}-tmp" >/dev/null || export TMP="${TMP}/${__user_uuid}-tmp"
export TEMP=$TMP
export TMPDIR=$TMP
test -d "$TMP" || mkdir -p "$TMP"


Cargando…
Cancelar
Guardar