arquivo .bashrc da raiz do Ubuntu

0

Eu estava instalando o rvm

e por algumas razões eu mudei a primeira linha no .bashrc do root o que estava ali?

Eu insiro if [[ -n "$PS1" ]]; e vejo que sou root, não consigo desfazer ... Qual é a primeira string como se ... no Ubuntu 12.04 para root?

    
por brabertaser19 19.01.2013 / 18:27

1 resposta

1

Eu não sou muito claro sobre o que você fez & amp; porque, mas eu acredito que é isso que você está pedindo (NB: tirado de 12.10 - deve ser similar):

ace@ace2:~/src$ sudo head -n 20 /root/.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace

# append to the history file, don't overwrite it
shopt -s histappend

# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000

# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
    
por IlluminAce 19.01.2013 / 19:08