摘要: 将以下两个禁用掉 完整管理员权限 https://superuser.com/questions/1002262/run-applications-as-administrator-by-default-in-windows-10 参考: https://answers.microsoft.com/ 阅读全文
posted @ 2021-01-07 14:40 wolbo 阅读(353) 评论(0) 推荐(0) 编辑
摘要: for file in *.png; do mv "$file" "${file%.png}_3.6.14.png" done for file in `find -name "*.old"` ; do mv ${file} ${file%.old}; done; 使用find -exec find 阅读全文
posted @ 2021-01-07 13:33 wolbo 阅读(88) 评论(0) 推荐(0) 编辑