আমি বিশ্বাস করি হিস্টটাইমফর্মটি বাশ শেলের জন্য। আপনি যদি ব্যবহার করেন zsh
তবে আপনি এই স্যুইচগুলি history
কমান্ডটিতে ব্যবহার করতে পারেন :
উদাহরণ
$ 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
আপনি যদি একটি করেন man zshoptions
বা man zshbuiltins
এই সুইচগুলি সম্পর্কিত আরও তথ্যের পাশাপাশি সম্পর্কিত অন্যান্য তথ্য জানতে পারেন history
।
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.
ডিবাগিং অনুরোধ
আপনি zsh
যখন অনুরোধ করেন তখন ডিবাগ করার জন্য আপনি নীচের দুটি পদ্ধতি ব্যবহার করতে পারেন ।
পদ্ধতি # 1
$ zsh -xv
পদ্ধতি # 2
$ zsh
$ setopt XTRACE VERBOSE
উভয় ক্ষেত্রেই যখন এটি শুরু হয় তখন এরকম কিছু দেখতে পাওয়া উচিত:
$ 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