上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 21 下一页
摘要: -exec 1.参数是一个一个传递的,传递一个参数执行一次rm 2.文件名有空格等特殊字符也能处理-xargs 1.一次将参数传给命令,可以使用-n控制参数个数 2.处理特殊文件名需要采用如下方式: find . -name "*.txt" print0 |xargs -0 rm {} find / 阅读全文
posted @ 2020-05-23 10:27 wolbo 阅读(299) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/laramia/p/5035744.html 阅读全文
posted @ 2020-05-20 16:01 wolbo 阅读(193) 评论(0) 推荐(0)
摘要: for /? 能看到的比下面详细 获取文件夹的名字 for /f "delims=" %%i in ("%cd%") do set folder=%%~ni for /f "delims=\" %%a in ("%CD%") do set CURR=%%a 1 变量 %0 %1 %2: 参数 类似于 阅读全文
posted @ 2020-05-18 10:45 wolbo 阅读(1748) 评论(0) 推荐(0)
摘要: oracle: 查用户表空间 select username,default_tablespace from dba_users; 删除表空间: drop tablespace "B2-4" including contents and datafiles CASCADE CONSTRAINTS; 阅读全文
posted @ 2020-05-02 11:47 wolbo 阅读(149) 评论(0) 推荐(0)
摘要: 重装之后outlook 打开链接提示 您的组织策略阻止我们为您完成此操作 这个是默认应用 关联的问题 我的internet exploer早卸了 网上除了https://www.cnblogs.com/ITCoNan/p/11350127.html 说的都不对 为防止链接失效 复制一下 2.注册表修 阅读全文
posted @ 2020-05-01 09:32 wolbo 阅读(2630) 评论(0) 推荐(0)
摘要: 1 下载dll,虽然很旧但是管用 2016版本 https://sourceforge.net/projects/keepoutlook/files/0.0.1/ 2 添加outlook加载项(已管理员身份运行) 3 重启outlook 参考: https://superuser.com/quest 阅读全文
posted @ 2020-05-01 09:05 wolbo 阅读(2004) 评论(0) 推荐(0)
摘要: dir /s/b \\10.24.20.122\xxxx | findstr npm.zip 阅读全文
posted @ 2020-04-29 10:43 wolbo 阅读(1422) 评论(0) 推荐(0)
摘要: 删除旧版本 sudo yum remove git* 添加repo并安装 sudo yum -y install https://packages.endpoint.com/rhel/7/os/x86_64/endpoint-repo-1.7-1.x86_64.rpm sudo yum -y ins 阅读全文
posted @ 2020-04-22 09:58 wolbo 阅读(906) 评论(0) 推荐(0)
摘要: 1 好多垃圾论坛都收费 下载镜像http://bbs.pcbeta.com/data/attachment/forum/202004/11/085713l66thw3o4rm6qtir.attach 工具用途 bootice u盘分区 transmac 制作启动盘 还原镜像 https://www. 阅读全文
posted @ 2020-04-21 23:07 wolbo 阅读(149) 评论(0) 推荐(0)
摘要: 1 yum安装 yum update && yum install python3 -y 2 从源码安装 参考了https://zhuanlan.zhihu.com/p/50171379 a 安装开发工具 yum install make automake gcc gcc-c++ kernel-de 阅读全文
posted @ 2020-04-15 11:06 wolbo 阅读(235) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 21 下一页