文件操作 - vsftpd_conf_migrate.sh
返回文件管理
返回主菜单
删除本文件
文件: /root/sh/vsftpd/vsftpd_conf_migrate.sh
编辑文件内容
#!/bin/bash #move old config files and symlink them #shipped with vsftpd-2.0.1-6 PREFIX="vsftpd" for file in $( ls /etc/${PREFIX}.* ); do if [ ! -L $file ]; then new=`echo $file | sed s/${PREFIX}\./${PREFIX}\\\\//g | sed s/\.rpmsave//g` mv -f ${file} ${new} ln -s ${new} ${file} echo $file moved to $new fi done
修改文件时间
将文件时间修改为当前时间的前一年
删除文件