如何获取历史记录条目以正确显示在多行上


15

假设我在bash提示符下输入了多行代码,而不是使用分号将其压缩到一个函数中:

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

如何使它显示为真实的换行符而不是'\ n'?

Answers:


21

您可以使用以下shopt命令在Bash中启用和禁用此功能。从Bash手册页。

摘抄

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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.