工作中常用的Linux命令
1、Linux软件安装命令 2、压缩解压缩 unzip -d apache-tomcat.zip tar -zxvf apache-tomcat.zip ---解压缩 tar -zcvf apache-tomcat.zip apache-tomcat --压缩apache-tomcat目录下的所有文件 3、在指定目录下搜索文件 find / -name " a.txt" 在根目录下搜索 find . -name "[a-z][A-Z][0-9]" 在当前目录下搜索 find /ect -mtime -5 查看5日内修改的文件 find /logs -type f -mtime +3 -exec ls -l{}\ 列出3天前的日志文件的详细信息 find /ect -name "paa " -ok grep "158" {}\ 执行命令带提示 find /ect -name "core" -print | xargs echo "" > /tmp/a.log find . -name \ -type f -print | xargs grep "abc" stat fileName/dirName 查看文件/目录详情 4、根据关键字过滤文件 grep " log" * 5、查看和杀死进程 ps -ef | grep java kill -9 pid 6、当前目录执行可执行文件 .