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

shell 564

#Shell
linux通用清理脚本

#!/bin/sh ########################### #delete log # in_day_num: like 1 2 is delete 2day ag…

2014-10-21 547

#Shell
网络军刀netcat nc发动弹

nc www.oschina.net 80 < 1.txt>>1.log

2014-10-21 914

#Shell
curl 无限循环发包post (windows 批处理goto)

:g curl -k -i --raw -o 0.dat -X POST -d "keyword=%%E6%%88%%91%%E6%%98%%AF%%E5%%B9%%BF%%E5%…

2014-10-20 775

#Shell
初始化CentOS 7

#!/bin/bash # Program: # system_init_shell # Author Looly cat << EOF +--------------…

2014-10-20 609

#Shell
Powershell模拟世界时钟

<# " Satnaam WaheGuru Ji" Author : Aman Dhally E-Mail : amandhally@gmail.com website : …

2014-10-20 798

#Shell
更改文件的字符编码

iconv -f gbk -t utf8 -o 123 12 iconv -f 原编码 -t 目标编码 -o 输出的文件 原文件

2014-10-19 749

#Shell
windows7笔记本管理wifi批处理

echo off title windows7 无线热点设置 color 1E :main cls echo. echo. ----------------------------…

2014-10-19 367

#Shell
Qt目标文件执行脚本

#!/bin/bash run () { if [ ! -f *.pro ] || [ ! -f *.pro.user ]; then echo "Warn: Can't find…

2014-10-17 976

#Shell
Oracle11G手动导出数据库脚本(支持空表)

SET NLS_LANG=AMERICAN_AMERICA.AL32UTF8 SET USER=test SET PASSWORD=test SET DATABASE=ORCL S…

2014-10-17 768

#Shell
一键删除svn文件

Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\Del…

2014-10-16 955

#Shell
Ubutun 发送邮件配置

echo "test email" | mail -s XXXXX test@lookicloud.com

2014-10-15 684

#Shell
判断文件夹是否存在

@echo off @title 批处理判断文件夹是否存在 if exist folder1 ( echo "已经存在文件夹" ) else ( md folder1 ) if n…

2014-10-15 939
1 45 46 47