ตรวจสอบให้แน่ใจว่าเปิดใช้งานประวัติของคุณแล้ว คุณสามารถตรวจสอบสถานะปัจจุบันโดยเรียกใช้:
set -o
ผลลัพธ์ควรมี (จดบันทึกhistory on
บรรทัด):
histexpand on
history on
ignoreeof off
set -o history
ถ้าไม่เปิดใช้งานคุณจำเป็นต้องเรียกใช้ ในการเปลี่ยนแปลงนี้แบบถาวรคุณต้องผนวกเข้ากับ~/.bashrc
:
set -o history
หากคุณต้องการเรียกใช้คำสั่งก่อนหน้าคุณสามารถเรียกใช้คำสั่งถัดไปได้เช่นกัน:
!!
จากหน้าคู่มือ Bash :
Event Designators
An event designator is a reference to a command line entry in the history list.
! Start a history substitution, except when followed by a blank, newline,
carriage return, = or ( (when the extglob shell option is
enabled using the shopt builtin).
!n Refer to command line n.
!-n Refer to the current command line minus n.
!! Refer to the previous command. This is a synonym for `!-1'.
!string
Refer to the most recent command starting with string.
!?string[?]
Refer to the most recent command containing string. The trailing ?
may be omitted if string is followed immediately by a newline.
^string1^string2^
Quick substitution. Repeat the last command, replacing string1 with
string2. Equivalent to ``!!:s/string1/string2/'' (see Modifiers below).
!# The entire command line typed so far.
หากคุณกำลังใช้ Bash คุณสามารถใช้ทางลัดเริ่มต้นสำหรับการสำรวจประวัติได้เช่นกัน: