Linux 查看远程服务器文件状态的方法
时间:2021-01-15 11:11:36|栏目:Linux|点击: 次
如下所示:
test 命令判断文件是否存在:
ssh usrname@remotehost "test -e remote_file_path"
stat 命令获取文件最后一次修改的时间戳:
ssh usrname@remotehost "stat -c %Y remote_file_path"
上一篇:基于Nginx0.8.54+PHP5.3.4+MySQL5.5.8的全新LNMP稳定版架构搭建的VPS
栏 目:Linux
本文标题:Linux 查看远程服务器文件状态的方法
本文地址:http://www.codeinn.net/misctech/45352.html