51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#ELL
PowerShell禁止执行脚本解决方法
无法加载文件C:***.ps1,因为在此系统中禁止执行脚本。有关详细信息,请参阅"get-helpabout_signing"。所在位置行:1字符:18+.checkEvents.ps1<<<<+CategoryInfo:NotSpecified:(:)[],PSSecurityExceptio...
代码星球
·
2020-08-09
PowerShell
禁止
执行
脚本
解决
在Xshell 6开NumLock时按小键盘上的数字键并不能输入数字
小键盘问题在Xshell6上用vi的时候,开NumLock时按小键盘上的数字键并不能输入数字,而是出现一个字母然后换行(实际上是命令模式上对应上下左右的键)。解决方法选项Terminal->Features里,找到Disableapplicationkeypadmode,选上就可以了在xmanager4中的xsh...
代码星球
·
2020-08-09
数字
Xshell
NumLock
时按
小键盘
SQL 中常用存储过程xp_cmdshell运行cmd命令
目的:使用SQL语句,在D盘创建一个文件夹myfile首先查询系统配置SELECT*FROMsys.configurationsWHEREname='xp_cmdshell'ORname='showadvancedoptions'GO可以看到他们的值为0,无法配置 打开系统配置:USEmasterGORECO...
代码星球
·
2020-08-09
SQL
常用
存储
过程
xp
Using IntelliJ IDEA as the Vim Editor
ThisfeatureisonlysupportedintheUltimateedition.ThefollowingisonlyvalidwhenIdeaVimPluginisinstalledandenabled!Makesurethat:YouareworkingwithIntelliJIDEAversion15...
代码星球
·
2020-08-09
Using
IntelliJ
IDEA
as
the
Xshell报错“The remote SSH server rejected X11 forwarding request.”
xshell连接centos7,报错:“TheremoteSSHserverrejectedX11forwardingrequest.” 打开文件/etc/ssh/sshd_config,修改下面的参数X11Forwardingyes如果有,那就不用修改 修改xs...
代码星球
·
2020-08-09
Xshell
报错
The
remote
SSH
go helloworld
//Sampleprogramtoshowhowabytes.Buffercanalsobeused//withtheio.Copyfunction.packagemainimport("bytes""fmt""io""os")//mainistheentrypointfortheapplication.f...
代码星球
·
2020-08-09
go
helloworld
shell 无限循环输出时间
#!/bin/bashwhile(true)dodate>>/home/k/a.logsleep1done 查看tail-f/home/k/a.log ...
代码星球
·
2020-08-09
shell
无限
循环
输出
时间
shell fold限制文件行宽
将文本的行限制到特定的宽这个用echo命令发送的文本用-w选项分解成块。在这个例子中,我们设定了行宽为12个字符。如果没有字符设置,默认是80。增加的-s选项将让fold分解到最后可用的空白字符,即会考虑单词边界。 例子echo"Thequickbrownfoxjumpedoverthelazyd...
代码星球
·
2020-08-09
shell
fold
限制
文件
行宽
shell 使用ping测试网络
能ping通返回1,不能返回0ping-c3192.168.1.1|grep'0received'|wc-l ...
代码星球
·
2020-08-09
shell
使用
ping
测试
网络
shell 将输入的字符转换成大写
test.sh#!/bin/bashwhilereadlinedoecho$line|tr'[a-z]''[A-Z]'done输出ddddddDDDDDDsssssSSSSScdcdcdcCDCDCDCssssssssssssSSSSSSSSSSSS ...
代码星球
·
2020-08-09
shell
输入
字符
换成
大写
shell 判断字符串长度是否不为0
test.sh#!/bin/bashs1=""iftest$s1;thenecho"lengthisnotzero"elseecho"thelengthis0"fis2="shell"iftest$s2;thenecho"lengthisnot0"elseecho"thelengthis0"fi执行sudo...
代码星球
·
2020-08-09
shell
判断
字符串
长度
是否
shell 判断字符串长度是否为0
test.sh#!/bin/bashecho"enterthestring:"readfilenameiftest-z$filename;thenecho"thelengthis0"elseecho"thelengthisnot0"fi执行sudochmod+xtest.sh./test.sh输出enter...
代码星球
·
2020-08-09
shell
判断
字符串
长度
是否
shell 判断一个字符串是否为空
test.sh#!/bin/bashecho"enterthestring:"readfilenameiftest$filename;thenecho"it'snotzero"elseecho"it'szero"fi执行sudochmod+xtest.sh./test.sh输出enterthestring:...
代码星球
·
2020-08-09
shell
判断
一个
字符串
是否
shell 判断是否是目录
创建一个文件和一个文件夹touchsssmkdirdtest.sh#!/bin/bashecho"enterthename:"readfilenameiftest-d$filename;thencd$filenamepwdelseecho"it'snotadirectory!"fi 执...
代码星球
·
2020-08-09
shell
判断
是否是
目录
shell 判断文件是否是可执行文件
测试变量指定的文件是否存在且是可执行文件。如果存在且是可执行文件,则执行该文件,否则通过chmod命令赋予该文件可执行权限。//test.sh#!/bin/bashecho"enterthename:"readfilenameiftest-x$filename;then./$filenameelsesudo...
代码星球
·
2020-08-09
文件
shell
判断
是否是
可执行
首页
上一页
...
49
50
51
52
53
...
下一页
尾页
按字母分类:
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
其他