To display the last five used commands, which one of the following commands is used (in bash shell)?

Correct Answer: history 5
While bash displays the complete history list using history command. Korn lists the 16 commands recently used. But we can easily find out the last five commands by using a numeric argument: $ history 5 // in bash $ history -5 // in Korn