shell
5xp_2001
这个作者很懒,什么都没留下…
展开
-
django uwsgi项目部署纪录
cpu_physicals=$(cat /proc/cpuinfo|grep "physical id"|sort|uniq|wc -l)cpu_cores=$(cat /proc/cpuinfo|grep "core id"|sort|uniq|wc -l)cpu_processes=$[${cpu_physicals} * ${cpu_cores}]echo processes ${cpu_processes}cpu_threads=$(grep -c 'processor' /proc...原创 2020-09-11 10:20:36 · 184 阅读 · 0 评论 -
c入门之二 helloworld
#include <stdio.h>main() { printf("hello world");}编译 gcc ./test.c 执行 ./a.out系统版本cat /etc/redhat-releaseCentOS release 6.10 (Final)gcc版本gcc -vUsing built-in specs.Target: x86_64-redhat-linuxConfigured with: ../configu...原创 2020-06-02 12:06:01 · 193 阅读 · 0 评论 -
shell备份systeminit
cpu_usage.sh/usr/bin/vmstat 1 3 | tail -2 | head -1 | awk '{cpu=100-$15;printf ("%d\n", cpu)}'available_ip.py#!/usr/bin/env pythonfor x in range(1200,1300): y = (4798 - x * 2.0) / 8.0 ...原创 2019-12-16 17:23:21 · 223 阅读 · 0 评论 -
shellscript linux系统初始化
系统初始化脚本 shell 基本的变量截取 主机名 salt配置 网卡配置等 部分信息已隐藏去#!/bin/bash# ===============================# Desc: System init Script# Author: Wuxp,Bailm# Version: 2017.07.26# =================原创 2017-08-03 22:13:56 · 349 阅读 · 0 评论 -
简单的sed替换 批量操作xshell文件
堡垒机导出大量xshell文件密码需要批量填写 先做好一个可以用的xshell 把里面的新密码过滤出来 然后sed替换所有的find ./ -name '*.xsh' | xargs sed -i 's/Password=1l\/pMn7nXF7G691/Password=+Kl\/pMnG691/g'原创 2017-03-28 16:21:53 · 3036 阅读 · 3 评论 -
linux下简单的磁盘报警脚本/crontab无法获取变量
此脚本用户简单的系统性能报警.具体变量定义可以视情况自行调整测试环境信息操作系统版本:CentOS release 6.7 (Final)内核版本:Linux ZQWY-COMMON-239 2.6.32-573.el6.x86_64 #1 SMP Thu Jul 23 15:44:03 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux脚本内容原创 2017-02-06 17:23:13 · 1094 阅读 · 1 评论 -
xshell无法使用小键盘区输入数字
xshell无法使用小键盘区域输入文字的解决方法 以及批量解决方法原创 2017-01-18 13:32:45 · 14842 阅读 · 1 评论 -
判断本机ip 更改dns配置
#!/bin/bash#ETH=`ifconfig | grep eth | awk -F' ' '{print $1}'`#ETH=`ifconfig | grep eth | wc -l`#echo $ETH#if [ "$ETH" == "2" ]# then # NET=`ifconfig | grep "inet addr:" |grep -v "127.0.0.原创 2016-11-30 11:32:03 · 464 阅读 · 0 评论 -
核查cdn加速的域名信息 从dns记录中遍历
昨天核查windows的流量IP. 由于snmp/zabbix的值不准确. 部分机器有LOOKBOOK网卡. IDC的机器逐台登陆查看.半天手就麻了.下午核查cdn加速域名信息,网宿的没有导出功能. 网站有多域名查询. 十个十个查询也费了好大功夫.由于师父建议在dns查询, 因部分cdn已配置.但是dns还是A记录. (cdn没有删除过配置,)于是从公司dns原创 2016-10-14 18:41:40 · 1243 阅读 · 1 评论 -
猜价格shell实例
猜商品价格的游戏 用户输入的范围为0-999之间用户每次猜会显示价格高了或低了,并显示当前是猜的第几次如果猜对了则显示恭喜并退出 1 #!/bin/bash 2 a=`expr $RANDOM % 1000` 3 b=0 4 echo "price(0-999): " 5 while true#一直循环while 6 do原创 2015-09-06 17:09:51 · 926 阅读 · 0 评论