Shell tips

With the default shell ksh, you may have noticed typing history would only display the last 10 lines of the history. This happens because history is an alias for the command fc -l which by default only displays the last 10 lines. Giving a number as a parameter to this alias will display the history from that number. Use history 1 to display the complete history.