上一页 1 ··· 230 231 232 233 234 235 236 237 238 ··· 367 下一页
摘要: windows下如何运行shell脚本 1、安装 git 官网:https://git-scm.com/ 下载安装即可 2、打开git bash 3、进入工作目录 75377@DESKTOP-1N42TVH MINGW64 ~ $ pwd ## 查看当前目录 /c/Users/75377 75377 阅读全文
posted @ 2021-12-12 10:28 小鲨鱼2018 阅读(5293) 评论(0) 推荐(0) 编辑
摘要: 1、直接测试,R实现1至4各重复3次 result <- vector() ## 空向量 for (i in 1:4) { result <- c(result, rep(i, 3)) } result 2、可以直接实现 rep(1:4, each = 3) 阅读全文
posted @ 2021-12-11 23:15 小鲨鱼2018 阅读(362) 评论(0) 推荐(1) 编辑
摘要: 1、将1至4各重复3次, shell双循环实现 root@ubuntu01:/home/test2# ls root@ubuntu01:/home/test2# for i in `seq 4`; do for j in `seq 3`; do echo $i >> num.txt; done; d 阅读全文
posted @ 2021-12-11 23:12 小鲨鱼2018 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1、直接测试 dir() dat <- read.csv("test.csv", header = F) ## 读取测试数据,实现按照第二列指定次数重复各列 dat result <- data.frame() ## 创建结果数据框 for (i in 1:nrow(dat)) { ## 利用双循环 阅读全文
posted @ 2021-12-11 23:04 小鲨鱼2018 阅读(1507) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 root@ubuntu01:/home/test2# cat test.txt ## 实现将每一行按照第二行数字指定的行数重复 1 3 e3rt idf 2 2 32 ffj 3 5 cc kkk 4 4 wf 34 2、while + for双循环实现 root@ubuntu01:/ 阅读全文
posted @ 2021-12-11 22:53 小鲨鱼2018 阅读(691) 评论(0) 推荐(0) 编辑
摘要: 1、问题 apt install 慢, 如下: root@ubuntu01:/home/test# apt install git 2、解决方法 root@ubuntu01:/home/test# cd /etc/apt/ root@ubuntu01:/etc/apt# ls apt.conf.d 阅读全文
posted @ 2021-12-10 22:10 小鲨鱼2018 阅读(1809) 评论(0) 推荐(1) 编辑
摘要: 问题 1、apt remove net-tools Waiting for cache lock: Could not get lock /var/lib/dpkg/lock-frontend. 2、结束这个占用的进程 root@ubuntu01:~# kill -9 5937 3、测试 root@ 阅读全文
posted @ 2021-12-10 21:59 小鲨鱼2018 阅读(1897) 评论(0) 推荐(0) 编辑
摘要: 1、清屏:cls 2、获取家目录 阅读全文
posted @ 2021-12-08 23:27 小鲨鱼2018 阅读(468) 评论(0) 推荐(0) 编辑
摘要: python中pip命令主要用于安装和下载包 安装:pip install package_name 卸载:pip uninstall pakage_name 以numpy包为例进行测试。 1、查看python版本 C:\Users\75377>python --version Python 3.8 阅读全文
posted @ 2021-12-08 23:21 小鲨鱼2018 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 1、查看内核 2、安装open-vm-tools sudo apt-get install open-vm-tools sudo apt-get install open-vm-tools-desktop 3、重启即可 reboot reboot 阅读全文
posted @ 2021-12-08 21:52 小鲨鱼2018 阅读(101) 评论(0) 推荐(0) 编辑
上一页 1 ··· 230 231 232 233 234 235 236 237 238 ··· 367 下一页