cd / 回到跟目录
cd .. 返回上一层目录
tomcat 的logs目录执行tail -f catalina.out查看日志
ps -ef|grep tomcat 查看tomcat进程
kill -9 4323 杀某个进程
rm -rf aa 删除名为aa的文件夹
rm aa 删除非文件夹的aa文件
rz 上传文件
vim index.jsp 编辑文件
i 变成可编辑模式
esc 退出编辑模式
wq 保存退出
cp -r ttp ../bak/ttp_20160422 复制ttp文件夹到上一层bak文件夹中并命名为ttp_20160422
mv ../ttp.war ./ 移动上一层文件夹中ttp.war 到当前目录