首页 软件开发 代码片段 shell ( Page 10 )

shell 564

#Shell
Linux 随机启动 Mysql​

# #将服务文件拷贝到init.d下,并重命名为mysql cp /usr/local/mysql/support-files/mysql.server /etc/init.d/m…

2015-10-06 890

#Shell
每天备份MYSQL数据库同时删除7天前的备份

#!/bin/bash ##############################################################################…

2015-10-03 997

#Shell
wfr转换CSV文件编码.bat

@echo off goto code 注释区 wfr转换CSV文件编码.bat 依山居 18:45 2015/11/26 wfr 下载及中文说明: http://baiy.cn/…

2015-09-30 750

#Shell
postfix log简要整理

#!/bin/bash #------------------------------------------------------- #TITLE: Postfix Mail …

2015-09-30 188

#Shell
测试hosts文件中配置项

#!/bin/bash #ping cat /etc/hosts | grep -v '^$' | grep -v '^#' | while read IP DOMAINS do …

2015-09-30 140

#Shell
Memcached 多进程启停脚本

#!/bin/sh  #  # Startup script for the server of memcached  #  # processname: memcached  #…

2015-09-29 837

#Shell
基于dnspod,动态更新ip地址

#!/bin/sh # usage: ./dnspod.sh ddns.conf # # # # ACCOUNT="" PASSWORD="" DOMAIN="" SUBDOMAI…

2015-09-29 553

#Shell
实验楼挂机脚本

Batch-CN 是一个windows 下的命令行工具包管理器,安装后使用以下这两命令分别安装curl.exe和sleep.exe: gt curl gt sleep 加上goto…

2015-09-29 850

#Shell
快速切换与自定义IP地址

@echo off :0 echo.--------------------------------------------- echo.输入1设置自动获取IP地址 echo.输入…

2015-09-27 803

#Shell
Powershell加密解密字符串

################# # Powershell Allows The Loading of .NET Assemblies # Load the Security a…

2015-09-27 615

#Shell
XCode5下编译lua;curl;openssl;xvid;x264;ffmpeg;isofs;libuv FOR iOS7

#!/bin/sh # The MIT License (MIT) # # Copyright (c) 2013 Pi # # Permission is hereby grant…

2015-09-27 112

#Shell
Linux Shell 如果参数带的太多了, 那么就该用上shift了

#!/bin/bash until[ $# -eq 0 ] do echo "$@" shift done _____________________________ ./test…

2015-09-26 273
1 8 9 10 11 12 47