码迷,mamicode.com
首页 >  
搜索关键字:echo    ( 13483个结果
linux基础(一)
一、用户界面:(1)GUI:GNomeKDE(2)CLI:bash,zsh,sh,csh,tchs,ksh查看所用的SHELL类型~]#echo#SHELL二、远程连接查看:ssh协议:sercureshell~]#ss-tnl查看系统是否监听于TCP协议的22号端口~]ipaddrelist或~]ifconfig查看IP地址三、确保防火墙处于关闭状态~]#iptables-L-n~]#iptab
分类:系统相关   时间:2020-04-13 14:04:13    阅读次数:95
定制CMD
@echo off rem reg add "hkcu\software\microsoft\command processor" /v Autorun /t reg_sz /d C:\DevOps\Sysinternals\cmd_autoruns.cmd rem 命令提示符属性--颜色--屏幕背... ...
分类:其他好文   时间:2020-04-12 22:23:21    阅读次数:74
supervisor使用,需要注意python3 pip
在linux里用pip install supervisor,配置文件都在**/usr/local/python3/bin**里,安装时会有黄色字提醒的: WARNING: The scripts echo_supervisord_conf, pidproxy, supervisorctl and ...
分类:编程语言   时间:2020-04-12 22:10:24    阅读次数:126
Jenkins中管道案例脚本(声明式语法)
pipeline { agent any parameters { choice( choices: 'feature\nmaster\npercent10', description: '选择要发布的分支,默认是feature', name: 'deploy_branch' ) choice( c ...
分类:其他好文   时间:2020-04-12 18:50:14    阅读次数:147
bypass 之报错注入
0x00 前言 前面讲到了bypass 联合查询和盲注,那么这章节就来个报错注入。 0x01 报错注入与函数 此方法是在页面没有显示位,但是echo mysql_error();函数输出了错误信息的时候方能使用。优点是注入速度快,缺点是语句较为复杂,而且只能用limit依次进行猜解。总体来说,报错注 ...
分类:其他好文   时间:2020-04-11 20:25:18    阅读次数:62
LINUX CentOS 8 systemctl firewall 防火墙开启/关闭 命令
[root@localhost ~]#firewall-cmd --state not running [root@bigdata hadoop]# systemctl is-enabled firewalld.service;echo $? (查看服务是否开机启动) enabled 0 [root ...
分类:系统相关   时间:2020-04-11 18:17:13    阅读次数:249
Shell中退出状态码exit
shell中运行的每个命令都使用退出状态码(exit status)来告诉shell它完成了处理。退出状态码是一个0~255之间的整数值,在命令结束时由命令传回shell。 1 .查看退出状态码 Linux提供了$?专属变量保存上一个执行的命令的退出状态码。你可以在你运行一个命令之后查看(echo ...
分类:系统相关   时间:2020-04-10 00:59:41    阅读次数:222
makefile 函数
1. findstring $(findstring <find>, <in>) 从 in 中查找 find ,如果找到则返回find,否则返回空 str1=1111 str2=11222 all: @echo $(findstring $(str1), $(str2)) 示例 uboot make ...
分类:其他好文   时间:2020-04-10 00:12:31    阅读次数:64
bat文件隐藏黑窗口的形式
打开bat文件,在开头处写入 @echo off if "%1" == "h" goto beginmshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit:beginREM (接着写内 ...
分类:其他好文   时间:2020-04-09 16:46:10    阅读次数:165
php+websocket 实现聊天室
一、配置 开启socket组建,否则会报 Fatal error: Call to undefined function socket_create() 错误 1、打开php.ini配置文件,搜索 extension=php_sockets.dll,把前面的‘;’分号删掉。修改之后重启服务。 注意: ...
分类:Web程序   时间:2020-04-09 15:21:22    阅读次数:96
13483条   上一页 1 ... 82 83 84 85 86 ... 1349 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!