随笔分类 - shell
摘要: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_
阅读全文
摘要:code macname@localhost Desktop % cat a.txt 1dededede 2dedefrfr 3frhvfvfvf 4frfrdede 5frfrfrfrf 6frfrede 7jukitttt 8csxssss 9zaxss 10swwww 11ssssss 12a
阅读全文
摘要: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
阅读全文
摘要:code macname@localhost Desktop % cat test.sh while read line;do echo $line; done < a.txt macname@localhost Desktop % macname@localhost Desktop % cat a
阅读全文
摘要:code macname@localhost Desktop % echo file{1,2,3,4,5} file1 file2 file3 file4 file5 macname@localhost Desktop % macname@localhost Desktop %
阅读全文
摘要:code macname@localhost Desktop % touch {aa,bb,cc}.txt macname@localhost Desktop %
阅读全文
摘要:code macname@localhost Desktop % cat a.txt 1dededede 2dedefrfr 3frhvfvfvf 4frfrdede 5frfrfrfrf 6frfrede 7jukitttt 8csxssss 9zaxss 10swwww 11ssssss 12a
阅读全文
摘要: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 "数组元素个数为: ${
阅读全文
摘要:code macname@localhost ~ % logname macname macname@localhost ~ %
阅读全文
摘要:code macname@localhost Desktop % zip -qr html.zip 资料 macname@localhost Desktop %
阅读全文
摘要: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
阅读全文
摘要:code yum install -y unzip zip
阅读全文
摘要:code macname@MacdeMacBook-Pro blockchain-master % echo "hello linux"|awk -F ' ' '{print $2" "$1}' linux hello macname@MacdeMacBook-Pro blockchain-mast
阅读全文
摘要:第一种写法 macname@MacdeMBP ~ % who > users macname@MacdeMBP ~ % wc -l users 4 users macname@MacdeMBP ~ % 第二种写法 macname@MacdeMBP ~ % who | wc -l 4 macname@
阅读全文
摘要:code macname@MacdeMBP ~ % ls | wc -l 62 macname@MacdeMBP ~ %
阅读全文
摘要:标准文件描述符 STDIN 许多bash命令能接受STDIN的输入,尤其是没有在命令行上指定文件的话。 下面是个用cat 命令处理STDIN输入的数据的例子。 当在命令行上只输入cat命令时,它会从STDIN接受输入。输入一行,cat命令就会显示出一行。 $ cat this is a test t
阅读全文
摘要:将终端的背景色设置成白色、文本设置成黑色 setterm -inversescreen on Linux中常见的几种不同 shell 常见Linux目录名称 / 虚拟目录的根目录。通常不会在这里存储文件 /bin 二进制目录,存放许多用户级的GNU工具 4 /boot 启动目录,存放启动文件 /de
阅读全文
摘要:cron服务是Linux的内置服务,但它不会开机自动启动。可以用以下命令启动和停止服务:\ /sbin/service crond start /sbin/service crond stop /sbin/service crond restart /sbin/service crond reloa
阅读全文
摘要:创建输出文件描述符 $ cat test13 #!/bin/bash # using an alternative file descriptor exec 3>test13out echo "This should display on the monitor" echo "and this sh
阅读全文
摘要: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
阅读全文