linux 常用指令nfs,根据时间删除文件,路由router

linux里发现文件为120天前建立的并删除

find -mtime +120 -type f -name *.csv  -exec rm -rf {} \;

linux里发现空文件夹并删除

find -type d -empty  -exec rm -rf {} \;

linux里发现txt文件有多少行数据

awk 'END{print NR}' 15090914009.txt

linux挂载集群

sudo apt-get install nfs-common
sudo mount -t nfs xxx.xx.xx.xx:/mnt/parastor /mnt/parastor
 
ping服务器不通,需要添加路由
sudo route add -net xxx.xx.xxx.0 netmask 255.255.255.0 gw xxx.xx.160.1 dev eno2
posted @ 2019-04-22 15:06  lingwang3  阅读(298)  评论(0编辑  收藏  举报