because I can't find any command replacement to the built-in 'history' command, I'd like to ask you if can use watch + history to continuously view history changes with date:
root@test:~# history|tail -2
598 17/11/15 14:23:48 :: HISTTIMEFORMAT="%d/%m/%y %T :: "
599 17/11/15 14:23:54 :: history|tail -2
what I tried to do is:
# watch -t -d=cumulative history
but it fails with error:
sh: 1: history: not found
anyway to use history with watch comamnd?