#ELL

PowerShell禁止执行脚本解决方法

无法加载文件C:***.ps1,因为在此系统中禁止执行脚本。有关详细信息,请参阅"get-helpabout_signing"。所在位置行:1字符:18+.checkEvents.ps1<<<<+CategoryInfo:NotSpecified:(:)[],PSSecurityExceptio...

在Xshell 6开NumLock时按小键盘上的数字键并不能输入数字

小键盘问题在Xshell6上用vi的时候,开NumLock时按小键盘上的数字键并不能输入数字,而是出现一个字母然后换行(实际上是命令模式上对应上下左右的键)。解决方法选项Terminal->Features里,找到Disableapplicationkeypadmode,选上就可以了在xmanager4中的xsh...

SQL 中常用存储过程xp_cmdshell运行cmd命令

目的:使用SQL语句,在D盘创建一个文件夹myfile首先查询系统配置SELECT*FROMsys.configurationsWHEREname='xp_cmdshell'ORname='showadvancedoptions'GO可以看到他们的值为0,无法配置 打开系统配置:USEmasterGORECO...
代码星球 ·2020-08-09

Using IntelliJ IDEA as the Vim Editor

ThisfeatureisonlysupportedintheUltimateedition.ThefollowingisonlyvalidwhenIdeaVimPluginisinstalledandenabled!Makesurethat:YouareworkingwithIntelliJIDEAversion15...
代码星球 ·2020-08-09

Xshell报错“The remote SSH server rejected X11 forwarding request.”

 xshell连接centos7,报错:“TheremoteSSHserverrejectedX11forwardingrequest.” 打开文件/etc/ssh/sshd_config,修改下面的参数X11Forwardingyes如果有,那就不用修改 修改xs...

go helloworld

 //Sampleprogramtoshowhowabytes.Buffercanalsobeused//withtheio.Copyfunction.packagemainimport("bytes""fmt""io""os")//mainistheentrypointfortheapplication.f...
代码星球 ·2020-08-09

shell 无限循环输出时间

 #!/bin/bashwhile(true)dodate>>/home/k/a.logsleep1done 查看tail-f/home/k/a.log ...

shell fold限制文件行宽

 将文本的行限制到特定的宽这个用echo命令发送的文本用-w选项分解成块。在这个例子中,我们设定了行宽为12个字符。如果没有字符设置,默认是80。增加的-s选项将让fold分解到最后可用的空白字符,即会考虑单词边界。 例子echo"Thequickbrownfoxjumpedoverthelazyd...

shell 使用ping测试网络

 能ping通返回1,不能返回0ping-c3192.168.1.1|grep'0received'|wc-l ...

shell 将输入的字符转换成大写

 test.sh#!/bin/bashwhilereadlinedoecho$line|tr'[a-z]''[A-Z]'done输出ddddddDDDDDDsssssSSSSScdcdcdcCDCDCDCssssssssssssSSSSSSSSSSSS ...

shell 判断字符串长度是否不为0

 test.sh#!/bin/bashs1=""iftest$s1;thenecho"lengthisnotzero"elseecho"thelengthis0"fis2="shell"iftest$s2;thenecho"lengthisnot0"elseecho"thelengthis0"fi执行sudo...

shell 判断字符串长度是否为0

 test.sh#!/bin/bashecho"enterthestring:"readfilenameiftest-z$filename;thenecho"thelengthis0"elseecho"thelengthisnot0"fi执行sudochmod+xtest.sh./test.sh输出enter...

shell 判断一个字符串是否为空

 test.sh#!/bin/bashecho"enterthestring:"readfilenameiftest$filename;thenecho"it'snotzero"elseecho"it'szero"fi执行sudochmod+xtest.sh./test.sh输出enterthestring:...

shell 判断是否是目录

  创建一个文件和一个文件夹touchsssmkdirdtest.sh#!/bin/bashecho"enterthename:"readfilenameiftest-d$filename;thencd$filenamepwdelseecho"it'snotadirectory!"fi 执...
代码星球 ·2020-08-09

shell 判断文件是否是可执行文件

 测试变量指定的文件是否存在且是可执行文件。如果存在且是可执行文件,则执行该文件,否则通过chmod命令赋予该文件可执行权限。//test.sh#!/bin/bashecho"enterthename:"readfilenameiftest-x$filename;then./$filenameelsesudo...
首页上一页...4950515253...下一页尾页