码迷,mamicode.com
首页 >  
搜索关键字:shell 编程笔记    ( 28428个结果
python经典例子
http://wangwei007.blog.51cto.com/68019/1106735检查Linux系统日志error和mysql错误日志的脚本http://wangwei007.blog.51cto.com/68019/1102836picklehttp://wangwei007.blog.51cto.com/68019/1045577python用zipfile模块打包文件或是目录、解压zip文件实例http://blog.163.co..
分类:编程语言   时间:2014-05-27 04:14:22    阅读次数:434
linux下自动ftp到服务器对比拷贝指定目录下文件
#!/bin/bash process=8 PWD=`pwd` DAT=`date` ftpip="192.168.1.1" user="ftp_username" password="ftp_password" local_dir="/home/" getlist() { ftp-n$ftpip<<EOF|awk‘{print$9}‘|sed‘/^$/d‘>$PWD/list user$user$password cdfile/ dir bye EOF } copy() { if[-f$P..
分类:系统相关   时间:2014-05-27 03:55:34    阅读次数:378
python模块paramiko的上传下载和远程执行命令
#!/usr/bin/python #-*-coding:utf-8-*- importparamiko,os,datetime server_ip=‘192.168.1.123‘ server_user=‘root‘ server_passwd=‘10241010‘ server_port=22 #local_dir=‘C:\Python27‘ #remote_dir=‘/soft2/nba/‘ defssh_connect(): ssh=paramiko.SSHClient() ssh.set_missi..
分类:编程语言   时间:2014-05-27 03:51:40    阅读次数:283
使用shell脚本实现加法乘法运算
编写一个shell脚本,实现加法和乘法运算。#!/bin/bash#Function:num1+num2num3*num4sum(){read-p"pleasekeyinfirstnumber:"num1read-p"pleasekeyinsecondnumber:"num2letnum3=${num1}+${num2}echo-e"\033[32m$num1+$num2=$num3\033[0m"}#############cf(){read-p"pleasekeyinfi..
分类:其他好文   时间:2014-05-27 03:28:19    阅读次数:219
Linux Shell 网络层监控脚本(监控包括:连接数、句柄数及根据监控反馈结果分析)
脚本监控:获取最大句柄数的进程:链接分析:脚本片段: case "$handle" in 2) echo "The handle of the process : " echo " " handle | awk...
分类:系统相关   时间:2014-05-24 03:05:11    阅读次数:420
linux:shell脚本的一些语法
读取文件的第一行并赋值给变量var=`head -1 filename` #`不是单引号,是Esc下方的一个按键,为命令替换符,将命令行执行结果赋给var读取文件的第N行并赋值给变量var=`sed -n Np filename` #把N替换成数字 逐行读取文件while rea...
分类:系统相关   时间:2014-05-23 22:31:08    阅读次数:389
shell 学习
$0就是该bash文件名$?是上一指令的返回值$*所有位置参数的内容:就是调用调用本bash shell的参数。$@基本上与上面相同。只不过是“$*”返回的是一个字符串,字符串中存在多外空格。“$@”返回多个字符串。http://blog.csdn.net/andy572633/article/de...
分类:其他好文   时间:2014-05-23 10:00:20    阅读次数:348
linux shell 命令
linux shell 命令 什么是Shell? Shell 是连接操作系统内核 与 用户 的接口。 终端是shell的表现形式。 什么是Shell编程? Shell 脚本语言加上linux 命令语句就构成了shell程序。优点在于批量处理、不用用户每次手动输入。 bash是shell程序解释器的一种。   常用命令 pwd:print working directory,打印工...
分类:系统相关   时间:2014-05-22 10:39:17    阅读次数:442
linux-shell脚本命令之awk
[ awk简介: ] awk可以从一个文本中获取部分内容, 或者对这个文本进行排版, 使它按某种格式输出. [ awk工作流程: ] awk会把文件一行内容去到...
分类:系统相关   时间:2014-05-22 08:06:46    阅读次数:395
[Ubuntu] Autostart nginx, php-fpm and mysql in Ubuntu14.04
[nginx]Step 1Download the shell scriptwget https://raw.github.com/JasonGiedymin/nginx-init-ubuntu/master/nginx -O /etc/init.d/nginxStep 2chmod +x /etc...
分类:数据库   时间:2014-05-20 09:00:18    阅读次数:401
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!