Execute o comando no bash sem salvar no histórico

36

Como executar o comando no bash sem salvá-lo no histórico?

    
por hiemye 28.02.2011 / 15:04

3 respostas

53

Adicione espaço antes do comando. comandos que começam com um espaço não são colocados no histórico:

root@ubuntu-1010-server-01:~# echo foo
foo
root@ubuntu-1010-server-01:~# history 
    1  echo foo
    2  history 
root@ubuntu-1010-server-01:~#  echo bar
bar
root@ubuntu-1010-server-01:~# history 
    1  echo foo
    2  history 

man bash

  HISTCONTROL
         A  colon-separated  list of values controlling how commands are
         saved on the history list.  If  the  list  of  values  includes
         ignorespace,  lines  which begin with a space character are not
         saved in the history list.  A value of ignoredups causes  lines
         matching  the  previous history entry to not be saved.  A value
         of ignoreboth is shorthand for ignorespace and  ignoredups.   A
         value  of erasedups causes all previous lines matching the cur‐
         rent line to be removed from the history list before that  line
         is  saved.   Any  value  not  in the above list is ignored.  If
         HISTCONTROL is unset, or does not include a  valid  value,  all
         lines  read  by the shell parser are saved on the history list,
         subject to the value of HISTIGNORE.  The second and  subsequent
         lines  of a multi-line compound command are not tested, and are
         added to the history regardless of the value of HISTCONTROL.
    
por 28.02.2011 / 15:08
3

Também vale a pena mencionar o truque para matar a sessão de login atual em vez da saída normal (assim, não dando a chance de salvar o histórico). Isso é especialmente útil quando você faz o login em um / c compartilhado, em vez de lembrar de prefixar com um espaço, você poderia apenas terminar a sessão matando-a. A maneira mais simples de matar é executando este comando:

kill -9 0

0 Pid sempre se refere ao PID do processo atual, então você está basicamente enviando um sinal de morte para si mesmo. Eu também costumo usar isso em vez de sair normalmente, já que muitas vezes eu suspendi as sessões na saída normal, provavelmente devido a um erro de configuração.

    
por 07.04.2011 / 19:09
1

Outra solução é definir o arquivo de histórico para um diretório:

export HISTFILE=/
    
por 03.01.2013 / 14:44