Wierzę, że HISTTIMEFORMAT jest przeznaczony dla pocisków Bash. Jeśli używasz, zsh
możesz użyć tych przełączników do history
polecenia:
Przykłady
$ history -E
1 2.12.2013 14:19 history -E
$ history -i
1 2013-12-02 14:19 history -E
$ history -D
1 0:00 history -E
2 0:00 history -i
Jeśli to zrobisz man zshoptions
lub man zshbuiltins
możesz dowiedzieć się więcej informacji na temat tych przełączników, a także innych informacji związanych z history
.
fragment strony podręcznika zshbuiltins
Also when listing,
-d prints timestamps for each command
-f prints full time-date stamps in the US `MM/DD/YY hh:mm' format
-E prints full time-date stamps in the European `dd.mm.yyyy hh:mm' format
-i prints full time-date stamps in ISO8601 `yyyy-mm-dd hh:mm' format
-t fmt prints time and date stamps in the given format; fmt is formatted
with the strftime function with the zsh extensions described for
the %D{string} prompt format in the section EXPANSION OF PROMPT
SEQUENCES in zshmisc(1). The resulting formatted string must be no
more than 256 characters or will not be printed.
-D prints elapsed times; may be combined with one of the options above.
Debugowanie wywołania
Możesz użyć następujących 2 metod do debugowania zsh
po jej wywołaniu.
Metoda nr 1
$ zsh -xv
Metoda nr 2
$ zsh
$ setopt XTRACE VERBOSE
W obu przypadkach powinieneś zobaczyć coś takiego po uruchomieniu:
$ zsh -xv
#
# /etc/zshenv is sourced on all invocations of the
# shell, unless the -f option is set. It should
# contain commands to set the command search path,
# plus other important environment variables.
# .zshenv should not contain commands that produce
# output or assume the shell is attached to a tty.
#
#
# /etc/zshrc is sourced in interactive shells. It
# should contain commands to set up aliases, functions,
# options, key bindings, etc.
#
## shell functions
...
...
unset -f pathmunge _src_etc_profile_d
+/etc/zshrc:49> unset -f pathmunge _src_etc_profile_d
# Created by newuser for 4.3.10
zsh
?zsh --version
. Właśnie potwierdziłem na Ubuntu 12.10, że polecenia, które ci dałem, działały dobrze.zshbuiltins
odkryłem, że muszę użyćfc
. To, co w końcu dla mnie zadziałało, byłofc -li
. Możesz również przekazać numery poleceńfc
, więcfc -li -100
wyświetla 100 ostatnich poleceń w historii.\history -E
, używam oh-my-zshhistory -E
lubhistory -i
cokolwiek, NIE działa dla mnie.zsh --version
pokazuje tozsh 4.3.6 (x86_64-suse-linux-gnu)
.To
fc -li 100
działa! Pokazuje 100 ostatnich poleceń ze znacznikiem czasu :)źródło
zsh 5.1.1 (x86_64-ubuntu-linux-gnu)
. A skoro tu jestem: czy wiesz, jak uzyskać pomoc z poleceniafc
? Ani praca,man fc
anifc --help
pracaoh-my-zsh
z polecenia historii, dodaj-l
flagę w jednej z opcji. patrz github.com/robbyrussell/oh-my-zsh/blob/master/lib/…fc -lf
pokaże pełny znacznik czasu. Zauważ, że działa to tylko na Zsh, a nie na bash.run-help fc
.Jeśli używasz
oh-my-zsh
dodatek wzsh
,history -E
lubhistory -i
nie będzie działać (bo to synonimfc -l 1
).Jak wskazał @juanpastas, spróbuj
\history -E
lub
\history -i
lub
fc -li 100
źródło