随笔分类 -  shell

上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要:cat ~/.ssh/id_rsa.pub 阅读全文
posted @ 2020-01-14 16:59 anobscureretreat 阅读(326) 评论(0) 推荐(0) 编辑
摘要:http://www.hostbuf.com/downloads/finalshell_install.pkg 参考: http://www.hostbuf.com/t/988.html 阅读全文
posted @ 2020-01-14 01:00 anobscureretreat 阅读(1220) 评论(0) 推荐(0) 编辑
摘要:chsh -s /bin/zsh 阅读全文
posted @ 2020-01-13 14:47 anobscureretreat 阅读(365) 评论(0) 推荐(0) 编辑
摘要:cat /etc/shells 显示如下: /bin/bash /bin/csh /bin/ksh /bin/sh /bin/tcsh /bin/zsh 阅读全文
posted @ 2020-01-07 15:11 anobscureretreat 阅读(384) 评论(0) 推荐(0) 编辑
摘要:linux shell脚本中的延时 还是使用 sleep 或usleep函数。 详细如下: 1、sleep : 默认为秒。 sleep 1s 表示延迟一秒 sleep 1m 表示延迟一分钟 sleep 1h 表示延迟一小时 sleep 1d 表示延迟一天 2、usleep : 默认以微秒。 1s = 1000ms = 1000000us 阅读全文
posted @ 2019-12-21 14:43 anobscureretreat 阅读(8172) 评论(0) 推荐(0) 编辑
摘要:test.sh 运行 阅读全文
posted @ 2019-12-07 20:12 anobscureretreat 阅读(602) 评论(0) 推荐(0) 编辑
摘要:第一个参数 : $1,第二个参数 :$2 test.sh 输出 例子 : 脚本会复制文件(arg1) 到目标地址(arg2) copy.sh 运行 阅读全文
posted @ 2019-12-07 19:54 anobscureretreat 阅读(576) 评论(0) 推荐(0) 编辑
摘要:在写一个shell脚本时,如果你想要检查前一命令是否执行成功,在if条件中使用“$?”可以来检查前一命令的结束状态。 阅读全文
posted @ 2019-12-07 19:46 anobscureretreat 阅读(2643) 评论(0) 推荐(0) 编辑
摘要:方法一: 2>&1 (# ls /usr/share/doc > out.txt 2>&1 ) 方法二: &> (# ls /usr/share/doc &> out.txt ) 阅读全文
posted @ 2019-12-07 19:41 anobscureretreat 阅读(626) 评论(0) 推荐(0) 编辑
摘要:在shell脚本,我们可以使用两种类型的变量: 系统定义变量 用户定义变量 系统变量是由系统系统自己创建的。这些变量通常由大写字母组成,可以通过“set”命令查看。 用户变量由系统用户来生成和定义,变量的值可以通过命令“echo $”查看。 阅读全文
posted @ 2019-12-07 19:38 anobscureretreat 阅读(638) 评论(0) 推荐(0) 编辑
摘要:在Linux操作系统,“/bin/bash”是默认登录shell,是在创建用户时分配的。使用chsh命令可以改变默认的shell。示例如下所示: 阅读全文
posted @ 2019-12-07 19:35 anobscureretreat 阅读(1688) 评论(0) 推荐(0) 编辑
摘要:一个Shell脚本是一个文本文件,包含一个或多个命令。作为系统管理员,我们经常需要使用多个命令来完成一项任务,我们可以添加这些所有命令在一个文本文件(Shell脚本)来完成这些日常工作任务。 阅读全文
posted @ 2019-12-07 19:31 anobscureretreat 阅读(240) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.linuxidc.com/Linux/2014-03/98041.htm 阅读全文
posted @ 2019-12-04 17:00 anobscureretreat 阅读(3592) 评论(0) 推荐(0) 编辑
摘要:file.yaml文件内容 idc_group: name: bx bx: news_bx: news_bx web3_bx: web3_php-fpm_bx task: [1,2,3,4,5,6] 例子 参考: https://www.linuxidc.com/Linux/2016-04/1304 阅读全文
posted @ 2019-12-04 16:39 anobscureretreat 阅读(6426) 评论(0) 推荐(0) 编辑
摘要:输出 参考: https://www.cnblogs.com/liuzhiyun/p/11270278.html 阅读全文
posted @ 2019-12-03 16:16 anobscureretreat 阅读(360) 评论(0) 推荐(0) 编辑
摘要:参考: https://blog.csdn.net/u013425438/article/details/80389176 阅读全文
posted @ 2019-12-03 16:00 anobscureretreat 阅读(8759) 评论(0) 推荐(0) 编辑
摘要:输出 参考: http://c.biancheng.net/view/1114.html 阅读全文
posted @ 2019-12-03 15:55 anobscureretreat 阅读(384) 评论(0) 推荐(0) 编辑
摘要:#!/bin/shzero=0 status=1 let status=0 if [[ $status -eq $zero ]];then echo "bu >= 3.6"else echo ">= 3.6"fi 阅读全文
posted @ 2019-10-09 23:33 anobscureretreat 阅读(208) 评论(0) 推荐(0) 编辑
摘要:a.py test.sh 输出 test.sh 输出 参考: http://ju.outofmemory.cn/entry/62675https://zhidao.baidu.com/question/391954555815798765.htmlhttps://www.cnblogs.com/ka 阅读全文
posted @ 2019-08-31 10:20 anobscureretreat 阅读(1088) 评论(0) 推荐(0) 编辑
摘要:a=1.6b=6.1c=`echo "$a > $b" | bc`然後,如果 $c 是 1 ,那就成立,否則不成立。 参考: http://ju.outofmemory.cn/entry/62675 阅读全文
posted @ 2019-08-30 19:38 anobscureretreat 阅读(704) 评论(0) 推荐(0) 编辑

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