从所有盘查询文件中存在某个单词的
grep -r test ./
grep -rn "test" /
关闭history记录功能
set +o history;
打开history记录功能
set -o history
磁盘空间
df -h
查看linux定时任务
crontab -l
查询指定路径下以jsp结尾的带出显示
find /usr/local -name "*.jsp" |xargs ls -lt