So erhalten Sie einen Verlaufseintrag, der ordnungsgemäß in mehreren Zeilen angezeigt wird


15

Angenommen, ich habe eine Funktion an der Bash-Eingabeaufforderung in mehreren Zeilen eingegeben, anstatt sie mit Semikolons auf eine zu drücken:

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

Wie wird dies mit echten Zeilenumbrüchen anstelle von '\ n' angezeigt?

Antworten:


21

Sie können diese Funktion in Bash mit dem shoptBefehl aktivieren und deaktivieren . Von der Bash-Manpage.

Auszug

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.

Aktiviert die Funktion

$ shopt -s cmdhist
$ shopt -s lithist

Deaktiviert die Funktion

$ shopt -u cmdhist
$ shopt -u lithist

Beispiel

$ shopt -s cmdhist
$ shopt -s lithist

Wenn ich jetzt renne 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
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.