一.恢复指定程序包所有文件的权限: #!/bin/bash #Assume that you have mounted a correct orignal-system on /mnt read -p "Input packages' name: " pkg for i in $(rpm -ql $pkg) do chmod --reference=/mnt$i $i done 二.类似,恢复原始系统文件的权限 #!/bin/bash #Assume that you have mou…
下面的代码是用户提交的,在使用的时候需要小心,因为 Atlassian 不提供这些代码的技术支持.如果你在使用或者修改这些代码的时候有任何问题,请粘贴到 post them to Atlassian Answers. 删除老的备份 —— Windows 的 Wscript 脚本 这个脚本将会检查备份文件然后删除他们(必要的话),下面的代码可能需要一些编辑. 'If you want 3 day old files to be deleted then insert 3 next to Date…