Birden çok satırda düzgün bir şekilde görüntülenmesi için bir geçmiş girdisi edinme


15

Noktalı virgülle bir yerine sıkmak yerine bash isteminde bir işleve girdiğimi varsayalım:

$ function blah {
  echo blah
}
$ history -1
12690  function blah {\necho blah\n}

Bunu '\ n' yerine gerçek yeni satır karakterleriyle nasıl görüntüleyebilirim?

Yanıtlar:


21

Bash içindeki bu özelliği şu shoptkomutu kullanarak etkinleştirebilir ve devre dışı bırakabilirsiniz . Bash man sayfasından.

alıntı

cmdhist   If set, bash attempts to save all lines of a multiple-line
          command in the same history entry.  This allows  easy  re-editing 
          of multiline commands.

lithist   If  set,  and the cmdhist option is enabled, multi-line commands 
          are saved to the history with embedded newlines rather than using 
          semicolon separators where possible.

Özelliği etkinleştirir

$ shopt -s cmdhist
$ shopt -s lithist

Özelliği devre dışı bırakır

$ shopt -u cmdhist
$ shopt -u lithist

Misal

$ shopt -s cmdhist
$ shopt -s lithist

Şimdi koştuğumda history:

   70  text=$(cat<<'EOF'
hello world\
foo\bar
EOF)
   71  text=$(cat<<'EOF'
hello world\
foo\bar
EOF
)
   72  ls
   73  cd IT/
...
...
  414  shopt -s lithist 
  415  history | less
  416  function blah {
  echo blah
}
  417  history | less
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.