history: history [-c] [-d 偏移量] [n] 或 history -anrw [文件名] 或 history -ps
栗子:
1. history // 显示所有使用的历史命令列表
2. history 10 // 显示最近使用的10条命令
3. history -w // 将历史命令写入 ~/.bash_history文件
4. echo $HISTSIZE // 显示系统会记录的命令条数
5. !5 // 执行第五条命令
6. !! // 执行上一条命令
7. !ec // 执行最近以ec开头的命令
问题:
1. 同一帐号同时多次登录的history写入问题
2. 无法记录时间
答案参见《鸟哥的Linux私房菜》p319