随笔分类 -  shell

上一页 1 2 3 4 5 6 ··· 10 下一页
摘要:code macname@localhost Desktop % cat test.sh my_array[0]=A my_array[1]=B my_array[2]=C my_array[3]=D echo "数组的元素为: ${my_array[*]}" echo "数组的元素为: ${my_ 阅读全文
posted @ 2020-11-25 21:11 anobscureretreat 阅读(2461) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % cat a.txt 1dededede 2dedefrfr 3frhvfvfvf 4frfrdede 5frfrfrfrf 6frfrede 7jukitttt 8csxssss 9zaxss 10swwww 11ssssss 12a 阅读全文
posted @ 2020-11-25 21:09 anobscureretreat 阅读(1180) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % echo `uname -a` Darwin localhost 19.6.0 Darwin Kernel Version 19.6.0: Thu Oct 29 22:56:45 PDT 2020; root:xnu-6153.141 阅读全文
posted @ 2020-11-25 21:07 anobscureretreat 阅读(430) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % cat test.sh while read line;do echo $line; done < a.txt macname@localhost Desktop % macname@localhost Desktop % cat a 阅读全文
posted @ 2020-11-25 21:04 anobscureretreat 阅读(935) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % echo file{1,2,3,4,5} file1 file2 file3 file4 file5 macname@localhost Desktop % macname@localhost Desktop % 阅读全文
posted @ 2020-11-25 21:02 anobscureretreat 阅读(718) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % touch {aa,bb,cc}.txt macname@localhost Desktop % 阅读全文
posted @ 2020-11-25 20:59 anobscureretreat 阅读(152) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % cat a.txt 1dededede 2dedefrfr 3frhvfvfvf 4frfrdede 5frfrfrfrf 6frfrede 7jukitttt 8csxssss 9zaxss 10swwww 11ssssss 12a 阅读全文
posted @ 2020-11-25 20:56 anobscureretreat 阅读(1750) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % cat test.sh my_array[0]=A my_array[1]=B my_array[2]=C my_array[3]=D echo "数组元素个数为: ${#my_array[*]}" echo "数组元素个数为: ${ 阅读全文
posted @ 2020-11-25 20:54 anobscureretreat 阅读(1624) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost ~ % logname macname macname@localhost ~ % 阅读全文
posted @ 2020-11-25 20:53 anobscureretreat 阅读(405) 评论(0) 推荐(0) 编辑
摘要:code macname@localhost Desktop % zip -qr html.zip 资料 macname@localhost Desktop % 阅读全文
posted @ 2020-11-25 20:52 anobscureretreat 阅读(154) 评论(0) 推荐(0) 编辑
摘要:code #!/bin/bash # storing STDOUT, then coming back to it exec 3>&1 exec 1>test14out echo "This should store in the output file" echo "along with this 阅读全文
posted @ 2020-11-03 15:49 anobscureretreat 阅读(128) 评论(0) 推荐(0) 编辑
摘要:code yum install -y unzip zip 阅读全文
posted @ 2020-08-19 10:50 anobscureretreat 阅读(729) 评论(0) 推荐(0) 编辑
摘要:code macname@MacdeMacBook-Pro blockchain-master % echo "hello linux"|awk -F ' ' '{print $2" "$1}' linux hello macname@MacdeMacBook-Pro blockchain-mast 阅读全文
posted @ 2020-08-19 10:49 anobscureretreat 阅读(496) 评论(0) 推荐(0) 编辑
摘要:第一种写法 macname@MacdeMBP ~ % who > users macname@MacdeMBP ~ % wc -l users 4 users macname@MacdeMBP ~ % 第二种写法 macname@MacdeMBP ~ % who | wc -l 4 macname@ 阅读全文
posted @ 2020-08-19 10:35 anobscureretreat 阅读(506) 评论(0) 推荐(0) 编辑
摘要:code macname@MacdeMBP ~ % ls | wc -l 62 macname@MacdeMBP ~ % 阅读全文
posted @ 2020-08-19 10:33 anobscureretreat 阅读(315) 评论(0) 推荐(0) 编辑
摘要:标准文件描述符 STDIN 许多bash命令能接受STDIN的输入,尤其是没有在命令行上指定文件的话。 下面是个用cat 命令处理STDIN输入的数据的例子。 当在命令行上只输入cat命令时,它会从STDIN接受输入。输入一行,cat命令就会显示出一行。 $ cat this is a test t 阅读全文
posted @ 2020-08-19 10:31 anobscureretreat 阅读(214) 评论(0) 推荐(0) 编辑
摘要:将终端的背景色设置成白色、文本设置成黑色 setterm -inversescreen on Linux中常见的几种不同 shell 常见Linux目录名称 / 虚拟目录的根目录。通常不会在这里存储文件 /bin 二进制目录,存放许多用户级的GNU工具 4 /boot 启动目录,存放启动文件 /de 阅读全文
posted @ 2020-08-19 10:28 anobscureretreat 阅读(465) 评论(0) 推荐(0) 编辑
摘要:cron服务是Linux的内置服务,但它不会开机自动启动。可以用以下命令启动和停止服务:\ /sbin/service crond start /sbin/service crond stop /sbin/service crond restart /sbin/service crond reloa 阅读全文
posted @ 2020-08-19 10:09 anobscureretreat 阅读(153) 评论(0) 推荐(0) 编辑
摘要:创建输出文件描述符 $ cat test13 #!/bin/bash # using an alternative file descriptor exec 3>test13out echo "This should display on the monitor" echo "and this sh 阅读全文
posted @ 2020-08-19 10:07 anobscureretreat 阅读(262) 评论(0) 推荐(0) 编辑
摘要:code #!/bin/bash curl haiyou.tian-wang.com &> /dev/null if [ $? -eq 0 ]; then curl_ins_search=1 else curl_ins_search=0 fi echo $curl_ins_search 阅读全文
posted @ 2020-03-17 14:14 anobscureretreat 阅读(345) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 10 下一页