编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 1366 篇代码解决方案

  • 1:mogodb监控脚本

                        mongodb_server.py#! /bin/env python#-*- coding:utf8 -*-import sysimport osfrom bson.timestamp import Timestampimport pymongofrom p

    https://www.u72.net/daima/fmf3.html - 2024-08-17 08:26:12 - 代码库
  • 2:tomcat重启脚本

                        #!/bin/bashPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/binexport JAVA_HOME=/opt/jdk/jdk1.7.0_79export JAVA_BIN=/opt/jdk

    https://www.u72.net/daima/f5bk.html - 2024-08-17 03:48:19 - 代码库
  • 3:weblogic管理脚本

                        start.sh Java代码 #!/usr/bin/bash  #  # start.sh  # @auth: zhoulin@lianchuang.com  #    SERVER_STATUS () {      serv_status=`ps -ef | grep w

    https://www.u72.net/daima/f025.html - 2024-07-10 04:38:46 - 代码库
  • 4:shell脚本注释

                        1、单行注释# xxxxx从“#”开始到此行结束 2、多行注释方法一:: << !语句1语句2……!方法二:: << 字符  #这里的字符可以是数字或者是字

    https://www.u72.net/daima/fc10.html - 2024-08-16 18:55:43 - 代码库
  • 5:Mysql备份脚本

                        #!/bin/bash#Time:2016-11-8#owner:fujinzhou#scriptname:mysqlback.sh#要备份的数据库名,多个数据库用空格分开DB=(zabbix reboot10)#备份目录B

    https://www.u72.net/daima/sacb.html - 2024-08-19 17:32:21 - 代码库
  • 6:shell脚本示例

                        #!/bin/bash######################################################## Name:         shell_exp.sh# Version:      v21.0# Function:     Backup My

    https://www.u72.net/daima/wknr.html - 2024-08-25 01:52:56 - 代码库
  • 7:mfschunkserver安装脚本

                        #!/bin/bash####结果判断judge() {  if [ $? -eq 0 ];then     echo "successfly..."  else     echo "filed...."     exit 500  fi}echo "####环境

    https://www.u72.net/daima/wf4r.html - 2024-08-25 07:23:18 - 代码库
  • 8:mfsclient安装脚本

                        #!/bin/bash####结果判断judge() {  if [ $? -eq 0 ];then     echo "successfly..."  else     echo "filed...."     exit 500  fi}echo "####环境

    https://www.u72.net/daima/wf4u.html - 2024-08-25 07:23:11 - 代码库
  • 9:wireshark lua脚本

                        1、目的:解析rssp2协议 2、如何使用wireshark lua插件  将编写的(假设为rssp2.lua)lua文本,放入wireshark 安装目录下,放哪里都行只要dofile添加了路

    https://www.u72.net/daima/wd5x.html - 2024-08-25 04:27:09 - 代码库
  • 10:python 备份脚本

                         import osimport timesource= r"out_res.txt"target_dir= r"F:\python\Doc"target=target_dir+time.strftime(‘%Y%m%d%H%M%S‘)+‘.zip‘zip_c

    https://www.u72.net/daima/s8fk.html - 2024-07-13 13:49:22 - 代码库
  • 11:mysql 备份脚本

                        #!/bin/bash#auto backup mysql every database;#date 2014.07.07#author firxiao###mysql_config####HOST="localhost"        ##mysql主机IPUS

    https://www.u72.net/daima/ssh4.html - 2024-07-13 01:31:22 - 代码库
  • 12:Shell脚本练习

                        #!/bin/bashecho "当前日期时间为:"`date`echo "Hello World !"#使用变量:可以用单引号,也可以用双引号your_name="Wang"echo $your_nameecho ${yo

    https://www.u72.net/daima/w707.html - 2024-08-26 05:44:12 - 代码库
  • 13:python备份脚本

                        本文参考简明python后修改#!/usr/bin/pythonimport timeimport os# 1. The files and directories to be backed up are specified in a list.sour

    https://www.u72.net/daima/v7z2.html - 2024-08-24 12:21:39 - 代码库
  • 14:update脚本出错

                        批量执行:update `erp_orders` set `orders_shipping_code`=‘RL007169726CN‘ where `erp_orders_id`=1055614141 and orders_shipping_code=‘‘;upda

    https://www.u72.net/daima/ufnc.html - 2024-07-13 23:35:30 - 代码库
  • 15:shell脚本复习

                            最近公司工作量很小,就复习复习,看起了马哥的视频,感觉马哥讲课讲得特别细。这才是深入到系统的讲解,补充了很多我之前只是了解到皮毛的东西。    shel

    https://www.u72.net/daima/rh54.html - 2024-08-18 08:23:48 - 代码库
  • 16:mysql 管理脚本

                        1.环境文件-bash-4.1$ more mysql_env.ini#!/bin/sh#set envMYSQL_USER=rootMYSQL_PASS=123456‘#check parameterif [ $# -ne 1 ]then        HOST_PO

    https://www.u72.net/daima/rhcs.html - 2024-08-18 08:03:46 - 代码库
  • 17:shell 切割脚本

                        #!/bin/bash#return error code#0: success#1: parameter error#6: custom.log file is empty#7: cut  file error#8: up log file successTA

    https://www.u72.net/daima/rbcf.html - 2024-08-18 10:18:57 - 代码库
  • 18:爬虫下载脚本

                        download 文件 1 #!/usr/bin/python 2 #_*_coding:utf-8 _*_ 3 import  urlparse 4 import urllib2 5 import random 6 import time 7 from

    https://www.u72.net/daima/sc3v.html - 2024-08-20 06:07:39 - 代码库
  • 19:自己收集脚本

                        查询某session上持有的锁资源USE AdventureWorksGOSELECT DB_NAME(resource_database_id) AS [DataBase],resource_type --DATABASE、FILE、OBJECT、PA

    https://www.u72.net/daima/r73m.html - 2024-07-12 11:43:35 - 代码库
  • 20:atm仿真脚本

                        #!/bin/bash# current time:2016-11-04 10:40:14#数据库信息prot="3306"hostname="localhost"username="root"password="123456"DB_name="Bank"table_

    https://www.u72.net/daima/r21u.html - 2024-08-19 02:54:58 - 代码库