上一页 1 ··· 362 363 364 365 366 367 368 369 370 ··· 375 下一页
摘要: 1、linux系统中expr命令实现命令行中的四则运算 简单示例: [root@linuxprobe test]# expr 5 + 3 ## 在命令行中实现加法运算 8 2、中间必须有空格 [root@linuxprobe test]# expr 5+3 ##中间必须有空格 5+3 [root@l 阅读全文
posted @ 2020-10-13 21:19 小鲨鱼2018 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: 1、linux系统中read命令用于从标准输入中读取数据,进而给变量赋值。 简单用法: [root@linuxprobe test]# echo $var1 ## 首先查看未赋值前变量,发现是空值 [root@linuxprobe test]# read var1 ## read命令直接跟想要赋值的 阅读全文
posted @ 2020-10-13 18:03 小鲨鱼2018 阅读(1971) 评论(0) 推荐(0) 编辑
摘要: 恭喜湖人,时隔十年,再次夺冠 ! 阅读全文
posted @ 2020-10-12 21:54 小鲨鱼2018 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 1、id命令用于反馈用于ID,所属组ID,(所属组名 ?) 使用root测试结果: [root@linuxprobe home]# whoami ## root用户 root [root@linuxprobe home]# echo $USER root [root@linuxprobe home] 阅读全文
posted @ 2020-10-12 21:50 小鲨鱼2018 阅读(1237) 评论(0) 推荐(0) 编辑
摘要: 1、基本结构 #!/bin/bash ## 声明脚本解释器 for 变量 in 可迭代对象 do 循环体 done 2、简单实例 [root@linuxprobe test3]# for i in 1 10 100 500;do echo $i;done ## 可以直接在命令行中使用,变量前需加 $ 阅读全文
posted @ 2020-10-12 21:39 小鲨鱼2018 阅读(822) 评论(0) 推荐(0) 编辑
摘要: 1、准备测试数据 [root@linuxprobe test3]# cat test.map 1 snp1 0 55910 1 snp2 0 85204 1 snp3 0 122948 1 snp4 0 203750 1 snp5 0 312707 1 snp6 0 356863 1 snp7 0 阅读全文
posted @ 2020-10-12 21:13 小鲨鱼2018 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 1、创建测试数据 [root@linuxprobe test3]# cat a.txt e i j s e f Y U D S D G 2、小写转换为大写 tr [root@linuxprobe test3]# tr [a-z] [A-Z] < a.txt ## 所有小写字符转换为大写 E I J 阅读全文
posted @ 2020-10-11 23:27 小鲨鱼2018 阅读(3287) 评论(0) 推荐(1) 编辑
摘要: 1、创建测试数据 [root@linuxprobe test3]# cat a.txt wrwrt fdgsaf fsads gdfgde fsddd dffgdf sfdef sdfdsg 2、 [root@linuxprobe test3]# sed 's/.//' a.txt ##删除开头一个 阅读全文
posted @ 2020-10-11 22:28 小鲨鱼2018 阅读(3738) 评论(0) 推荐(0) 编辑
摘要: 1、创建测试数据 [root@linuxprobe test3]# cat a.txt w r t f s 4 6 6 a g g s d g r 4 d e w h s f g h 2、 [root@linuxprobe test3]# grep -E '^w|^a|h$' a.txt ## 提取 阅读全文
posted @ 2020-10-11 21:45 小鲨鱼2018 阅读(1466) 评论(0) 推荐(0) 编辑
摘要: 1、创建测试数据 [root@linuxprobe test3]# echo {1..300} | xargs -n 15 > a.txt [root@linuxprobe test3]# cat a.txt 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 阅读全文
posted @ 2020-10-11 21:35 小鲨鱼2018 阅读(10301) 评论(0) 推荐(0) 编辑
上一页 1 ··· 362 363 364 365 366 367 368 369 370 ··· 375 下一页