Як правильно записати історію, щоб правильно відображатись у кількох рядках


15

Припустимо, я ввів функцію в підказці bash, в декількох рядках, а не видавлюючи її крапкою з комою:

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

Як зробити це для відображення реальних символів нового рядка замість '\ n'?

Відповіді:


21

Ви можете ввімкнути та вимкнути цю функцію в Bash за допомогою shoptкоманди. Зі сторінки чоловіка Баша.

витяг

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.

Вмикає функцію

$ shopt -s cmdhist
$ shopt -s lithist

Вимикає функцію

$ shopt -u cmdhist
$ shopt -u lithist

Приклад

$ shopt -s cmdhist
$ shopt -s lithist

Тепер, коли я бігаю 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
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.