搜索结果
查询Tags标签: centos79,共有 30条记录-
在Linux命令行提示符PS1中优雅地显示日期和时间
用"\d"的时候显示的时间是依据系统语言而变化的,文字描述的时间,“二”,“Tue”,"火"等 [root@CentOS79 ~]# export PS1=[\u@\h \d \W]\$ [root@CentOS79 Tue Nov 23 ~]# export LANG=zh_CN.UTF-8 [root@CentOS79 二 11月 23 ~]# export LANG=ja…
2021/11/24 7:11:13 人评论 次浏览 -
在Linux命令行提示符PS1中优雅地显示日期和时间
用"\d"的时候显示的时间是依据系统语言而变化的,文字描述的时间,“二”,“Tue”,"火"等 [root@CentOS79 ~]# export PS1=[\u@\h \d \W]\$ [root@CentOS79 Tue Nov 23 ~]# export LANG=zh_CN.UTF-8 [root@CentOS79 二 11月 23 ~]# export LANG=ja…
2021/11/24 7:11:13 人评论 次浏览 -
linux系统shell实现统计 plink文件基因频率
1、[root@centos79 test]# cat test.sh #!/bin/bash#step1 check consistence of columns temp1=`head -n 1 $1 | awk {print NF}` for i in $(seq `sed -n "$=" $1`) do temp2=$(sed -n "$i"p $1 | awk {print NF}) if [ $temp2 -ne $temp1 ] then e…
2021/10/31 7:12:44 人评论 次浏览 -
linux系统shell实现统计 plink文件基因频率
1、[root@centos79 test]# cat test.sh #!/bin/bash#step1 check consistence of columns temp1=`head -n 1 $1 | awk {print NF}` for i in $(seq `sed -n "$=" $1`) do temp2=$(sed -n "$i"p $1 | awk {print NF}) if [ $temp2 -ne $temp1 ] then e…
2021/10/31 7:12:44 人评论 次浏览 -
linux系统shell实现统计 plink文件基因频率
1、[root@centos79 test]# cat test.sh #!/bin/bash#step1 check consistence of columns temp1=`head -n 1 $1 | awk {print NF}` for i in $(seq `sed -n "$=" $1`) do temp2=$(sed -n "$i"p $1 | awk {print NF}) if [ $temp2 -ne $temp1 ] then e…
2021/10/31 7:12:35 人评论 次浏览 -
linux系统shell实现统计 plink文件基因频率
1、[root@centos79 test]# cat test.sh #!/bin/bash#step1 check consistence of columns temp1=`head -n 1 $1 | awk {print NF}` for i in $(seq `sed -n "$=" $1`) do temp2=$(sed -n "$i"p $1 | awk {print NF}) if [ $temp2 -ne $temp1 ] then e…
2021/10/31 7:12:35 人评论 次浏览 -
linux系统中grep -f选项
1、测试数据[root@centos79 test]# ls a.txt b.txt [root@centos79 test]# cat a.txt e k [root@centos79 test]# cat b.txt e r t d f 3 s g k i e x d f g 2、以a.txt中每一行为关键字,查找b.txt中匹配的行[root@centos79 test]# cat a.txt e k [root@centos79 test]…
2021/8/7 7:07:34 人评论 次浏览 -
linux系统中grep -f选项
1、测试数据[root@centos79 test]# ls a.txt b.txt [root@centos79 test]# cat a.txt e k [root@centos79 test]# cat b.txt e r t d f 3 s g k i e x d f g 2、以a.txt中每一行为关键字,查找b.txt中匹配的行[root@centos79 test]# cat a.txt e k [root@centos79 test]…
2021/8/7 7:07:34 人评论 次浏览 -
linux 系统中如何统计文件列数
1、测试数据[root@centos79 test]# cat a.txt e r w i s g n c w d h x 2、awk[root@centos79 test]# cat a.txt e r w i s g n c w d h x [root@centos79 test]# awk {print NF} a.txt 4 4 4 [root@centos79 test]# awk END{print NF} a.txt 4 3、grep + wc -l[root@ce…
2021/7/26 7:06:28 人评论 次浏览 -
linux 系统中如何统计文件列数
1、测试数据[root@centos79 test]# cat a.txt e r w i s g n c w d h x 2、awk[root@centos79 test]# cat a.txt e r w i s g n c w d h x [root@centos79 test]# awk {print NF} a.txt 4 4 4 [root@centos79 test]# awk END{print NF} a.txt 4 3、grep + wc -l[root@ce…
2021/7/26 7:06:28 人评论 次浏览 -
linux 系统中pgrep命令
linux系统中pgrep用于查找进程 1、查找与命令相关的进程[root@centos79 test]# pgrep sort [root@centos79 test]# 启动一个sort命令测试:[root@centos79 test]# seq -f test%03g 100000000| sort | uniq -c [root@centos79 test]# pgrep sort ## 另外一个终端 18521 […
2021/7/22 7:11:01 人评论 次浏览 -
linux 系统中pgrep命令
linux系统中pgrep用于查找进程 1、查找与命令相关的进程[root@centos79 test]# pgrep sort [root@centos79 test]# 启动一个sort命令测试:[root@centos79 test]# seq -f test%03g 100000000| sort | uniq -c [root@centos79 test]# pgrep sort ## 另外一个终端 18521 […
2021/7/22 7:11:01 人评论 次浏览 -
linux系统中nl命令
linux系统中nl命令 1、测试数据[root@centos79 test3]# cat a.txt e 3 8 i d f a e 8 3 s g g j 2 z t y c g s g s a 2、nl命令[root@centos79 test3]# cat a.txt e 3 8 i d f a e 8 3 s g g j 2 z t y c g s g s a [root@centos79 test3]# nl a.txt1 e 3 8 i2 d f a …
2021/7/22 7:10:36 人评论 次浏览 -
linux系统中nl命令
linux系统中nl命令 1、测试数据[root@centos79 test3]# cat a.txt e 3 8 i d f a e 8 3 s g g j 2 z t y c g s g s a 2、nl命令[root@centos79 test3]# cat a.txt e 3 8 i d f a e 8 3 s g g j 2 z t y c g s g s a [root@centos79 test3]# nl a.txt1 e 3 8 i2 d f a …
2021/7/22 7:10:36 人评论 次浏览 -
linux系统中批量提取指定行的数据
1、测试数据[root@centos79 test]# cat a.txt 01 3 4 02 f s 03 t 3 04 s d 05 g i 06 y e 07 a w 08 d g 09 e w 10 n u 11 7 8 12 3 s 13 a d 14 g e 15 w a 16 z v 17 n m 18 k p 2、提取 3,5,7,8,9,15,17行 使用sed[root@centos79 test]# ls a.txt lines [root@cent…
2021/7/22 7:06:32 人评论 次浏览