上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 367 下一页
摘要: 001、 -i [root@PC1 test]# ls [root@PC1 test]# touch a.txt a.csv [root@PC1 test]# ls a.csv a.txt [root@PC1 test]# find ./ -name "*.txt" | xargs -i cp {} 阅读全文
posted @ 2023-05-08 21:56 小鲨鱼2018 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 001、不使用 -i选项 [root@PC1 test]# ls abva abvb abvc abvd dir1 dir2 dir3 dir4 dir5 [root@PC1 test]# ls | xargs mv {} {}.bak ## 不使用 -i选项 mv: cannot stat ‘{} 阅读全文
posted @ 2023-05-08 11:37 小鲨鱼2018 阅读(879) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls a.txt [root@PC1 test]# cat a.txt 33 ac kk dd adebc kk ad abc uy dd gg 88 [root@PC1 test]# grep -E "ab?c" a.txt ## "ab?c" 等价与 阅读全文
posted @ 2023-05-07 20:52 小鲨鱼2018 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 001、 [root@PC1 test]# ls dir1 dir2 dir3 [root@PC1 test]# du -h ## 查看所有子目录占用磁盘的大小 100M ./dir1 300M ./dir2 30M ./dir3 430M . 阅读全文
posted @ 2023-05-07 20:30 小鲨鱼2018 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 001、 root@ubuntu01:~# cat /etc/issue Ubuntu 22.04.2 LTS \n \l 002、 root@ubuntu01:~# lsb_release -a No LSB modules are available. Distributor ID: Ubunt 阅读全文
posted @ 2023-05-07 17:16 小鲨鱼2018 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 001、系统 [root@PC1 ~]# hostnamectl Static hostname: PC1 Icon name: computer-vm Chassis: vm 🖴 Machine ID: 0701dfe1316f4cd6be6f958130674e6f Boot ID: 541d 阅读全文
posted @ 2023-05-07 15:50 小鲨鱼2018 阅读(1103) 评论(0) 推荐(0) 编辑
摘要: 001、创建前 [root@PC1 hiblup]# ls hiblup hiblup_1.3.1_linux_x86_64_20230220.tar.gz hiblup.log [root@PC1 hiblup]# hiblup ## 测试hiblup命令 bash: hiblup: comman 阅读全文
posted @ 2023-05-07 11:27 小鲨鱼2018 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 001、虚拟机开启报错 002、解决方法 a、 b、 c、 d、执行如下命令:bcdedit /set hypervisorlaunchtype off e、重启计算机 阅读全文
posted @ 2023-05-07 09:09 小鲨鱼2018 阅读(1147) 评论(0) 推荐(0) 编辑
摘要: source 命令会在当前 shell 中执行,而 bash 会创建一个新的 shell 会话。 001、 (base) root@DESKTOP-A31BQ38:/home/test2# ls test.sh (base) root@DESKTOP-A31BQ38:/home/test2# cat 阅读全文
posted @ 2023-05-07 00:17 小鲨鱼2018 阅读(141) 评论(0) 推荐(0) 编辑
摘要: R语言中cor函数应用与数据框,生成以列为基本单位的两两变量之间的相关的矩阵。 01、测试: a <- c(1, 3, 5, 7, 9) b <- c(3, 8, 7, 12, 23) c <- c(12, 23, 54, 63, 89) d <- c(23, 45, 68, 87, 234) da 阅读全文
posted @ 2023-05-06 14:58 小鲨鱼2018 阅读(275) 评论(0) 推荐(0) 编辑
上一页 1 ··· 85 86 87 88 89 90 91 92 93 ··· 367 下一页