J'aimerais connaître mes variables d'environnement dans bash. Sont-ils stockés quelque part?
Réponses
Trop de publicités?Je ne suis pas sûr si c'est ce que vous voulez, mais essayez printenv
Cela va vous montrer toutes vos variables d'environnement.
Sur l'endroit où ils sont stockés
Linux: où sont les variables d'environnement stockées?
Comment définir les Variables d'Environnement du Shell
http://www.codecoffee.com/tipsforlinux/articles/030.html
Heureux les réinstallant :-)
joksnet
Points
1298
Il suffit d'exécuter env
dans un terminal.
Exemple de sortie:
$ env
TERM=xterm
SHELL=/bin/bash
USER=joksnet
USERNAME=joksnet
DESKTOP_SESSION=gnome
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
PWD=/home/joksnet
GDM_KEYBOARD_LAYOUT=us
LANG=en_US.utf8
HOME=/home/joksnet
DISPLAY=:0.0
COLORTERM=gnome-terminal
_=/usr/bin/env
Ronnie Howell
Points
534
karlphillip
Points
46502
Ou ensemble :
SET(P) POSIX Programmer's Manual SET(P)
NAME
set - set or unset options and positional parameters
SYNOPSIS
set [-abCefmnuvx][-h][-o option][argument...]
set [+abCefmnuvx][+h][+o option][argument...]
set -- [argument...]
set -o
set +o
DESCRIPTION
If no options or arguments are specified, set shall write the names and values of all shell variables in the collation sequence of the current locale. Each name
shall start on a separate line, using the format:
"%s=%s\n", <name>, <value>
The value string shall be written with appropriate quoting; see the description of shell quoting in Quoting . The output shall be suitable for reinput to the
shell, setting or resetting, as far as possible, the variables that are currently set; read-only variables cannot be reset.