51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#SHELL
shell中的source和直接执行sh的区别
首先我们知道我们执行shell有这么几种方法1.sh/bash使用其内置的命令集来执行一些命令,例如如下shdemo.shbashdemo.sh 2.使用./或者/$SHELLPATH/*.sh的方式执行./demo.sh/home/vagrant/shell/test.sh 采用上面的方法的话需要...
代码星球
·
2020-05-23
shell
中的
source
直接
执行
linux写shell注意的问题
linux写shell注意的问题一定要vicrontab.sh来写ps:在windows系统中编辑过这个文件,就会出现类似的换行符这样导致linux系统中运行sh报错比如会出现$MQ字符如果要查看有没有cat-Acrontab.shps:还有个方法notepad编辑菜单里>文档格式转换>从Windows转换...
代码星球
·
2020-05-23
linux
shell
注意
问题
linux shell根据端口返回进程号杀死进程的方法
linuxshell根据端口返回进程号杀死进程的方法<pre>kill`lsof-t-i:9501`</pre>这个就是杀死9501端口的进程号...
代码星球
·
2020-05-23
进程
linux
shell
根据
端口
linux shell获取show slave status方法
linuxshell获取showslavestatus方法<pre>#!/bin/basharray=($(mysql-u数据库账号-p数据库密码-e"showslavestatusG"|grep"Running"|awk'{print$2}'))if["${array[0]}"=="Yes"]&&...
代码星球
·
2020-05-23
linux
shell
获取
show
slave
linux shell提示输入 输错字符解决方法
linuxshell提示输入输错字符解决方法ctrl+回车删除单个字符ctrl+u删除光标前全部字符ctrl+k删除光标后全部字符...
代码星球
·
2020-05-23
linux
shell
提示
输入
输错
linux shell 写swoole重启脚本
linuxshell写swoole重启脚本代码如下<pre>#!/bin/shkill`lsof-t-i:9501`sleep2php/data/web/mircoweb/wwwroot/Public/swoole.phpsleep1netstat-ntlp</pre>如果不支持lsof命令那就...
代码星球
·
2020-05-23
linux
shell
swoole
重启
脚本
xshell 快速复制粘贴的方法
xshell快速复制粘贴的方法<imgsrc="http://newmiracle.cn/wp-content/uploads/2017/01/QQ截图20170113163139-251x300.png"width="251"height="300"class="alignnonesize-mediumwp-i...
代码星球
·
2020-05-23
xshell
快速
复制
粘贴
方法
linux shell `符号详解
linuxshell`符号详解<pre>[root@iZ23uewresmZarjianghu]#echo`ls`asss.htmlcommonguaji.phpimagesindex.phplog.logregister.htmlregister.phprestartswoole.shtestditu.h...
代码星球
·
2020-05-23
linux
shell
符号
详解
linux shell自动输入实现
1#!/bin/sh 2 3whilereadline 4do 5 str=$line 6 &...
代码星球
·
2020-05-23
linux
shell
自动
输入
实现
shell执行时文件命名导致的错误
1、脚本check_nginx.sh的内容如下:1#!/bin/bash2count=$(ps-ef|grepnginx|grep-vgrep|wc-l)3sleep104echo$count2、执行ps-ef|grepnginx|grep-vgrep|wc-l,真实结果为23、但是执行sh-xcheck_...
代码星球
·
2020-05-22
shell
行时
文件
命名
导致
Python2.7设置在shell脚本中自动补全功能的方法
#!/usr/bin/envpython#pythonstartupfileimportsysimportreadlineimportrlcompleterimportatexitimportos#tabcompletionreadline.parse_and_bind('tab:complete')#historyf...
代码星球
·
2020-05-22
Python2.7
置在
shell
脚本
自动
Python3设置在shell脚本中自动补全功能的方法
本篇博客将会简短的介绍,如何在ubuntu中设置python自动补全功能。需求:由于python中的内建函数较多,我们在百纳乘时,可能记不清函数的名字,同时自动补全功能,加快了我们开发的效率。方法以及要求:设置过程中需要看客具备一点ubuntu的基本知识,当然不懂也没有关系,跟着一步一步走,不懂得可以学习一下ubunt...
代码星球
·
2020-05-22
Python3
置在
shell
脚本
自动
shell的MySQL命令
1.mysql--help-h :ip/host-u :用户名-p :密码-P :端口-D :指定库-e :指定sql语句-t :查询结果按表格展示-c,--comments : Preservecomme...
代码星球
·
2020-05-21
shell
MySQL
命令
grep查询文本:问一个简单shell问题,将grep的输出赋值给一个变量
用grep命令得到的输出赋值给一个变量不成功。grep命令如下:代码:$grep-c'^abc'file.txt输出为22,表示file.txt中以abc开头的行的数目。现在将输出赋值给一个变量:代码:myvar=`grep-c'^abc'file.txt`得到的$myvar值为0,貌似是将命令的返回状态值付给了变量,...
代码星球
·
2020-05-19
grep
一个
查询
文本
简单
Xshell的telnet简化登录
可以设置命令...
代码星球
·
2020-05-19
Xshell
telnet
简化
登录
首页
上一页
...
41
42
43
44
45
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他