Qual arquivo de configuração tem minha variável de caminho? [duplicado]

-1

Então, no meu livro "the linux command line", ele diz isso

"A variável PATH é freqüentemente (mas nem sempre, dependendo da distribuição) definida pelo / etc / arquivo de inicialização de perfil e com este código:

PATH=$PATH:$HOME/bin"

quando eu abro o etc / profile para ver se está lá, não é .... mas certamente esse código tem que estar no sistema? No ambiente, existe a variável path, mas não é a mesma, existem vários caminhos separados por dois pontos.

Onde está esse código no meu sistema, se é que funciona?

    
por thinksinbinary 14.12.2015 / 19:15

1 resposta

0

Essa parte específica do código está localizada em ~/.profile , que por padrão é assim:

$ cat /etc/skel/.profile
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi
    
por Gunnar Hjalmarsson 14.12.2015 / 21:01