#!/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
生成子类的过程见代码:class Person { String name; int age;
Person(){ System.out.print("Person的无参数构造函数"); } Person(String name,int age){ ...
分类:
移动开发 时间:
2014-05-27 02:43:41
阅读次数:
226
按登录非登录判断:uid){/*如果是当前浏览者为登录用户则显示下面的内容*/print;}else{/*如果是当前浏览者为非登录用户则显示下面的内容*/print;}?>按用户uid判断,这个很适合把一些特定区块只显示给管理员:uid==10){/*如果是当前浏览者登录且uid等于10则显示下面的...
分类:
其他好文 时间:
2014-05-27 02:02:59
阅读次数:
251
父类:class Printer{ void open(){
System.out.print("Open"); } void close(){ System.out.print("close"); } void
print(...
分类:
移动开发 时间:
2014-05-27 02:00:57
阅读次数:
395
类的定义class
Date//用class定义一个类{public://公有成员:内部和外部都可以访问 void SetDate(int y,int m, int d); int
IsLeapYear();//成员函数 void Print();private://私有成员:内部...
分类:
其他好文 时间:
2014-05-27 01:06:01
阅读次数:
280
为什么要使用抽象类 ? 父类是打印机, 子类是 喷墨打印机 和 针式打印机 父类的 print
函数, 由于 喷墨打印机 和 针式打印机 原理不同而无法编写, 故应使用抽象函数 下面演示一种抽象类的价值.abstract class Printer{
void Open(){ ...
分类:
其他好文 时间:
2014-05-23 22:02:30
阅读次数:
382
转自http://jiangshuiy.iteye.com/blog/1674235PS:今天做android助手项目的时候,发现adb
push命令执行会卡死,最后发现不能用waitfor阻塞等待执行结果,而且cmd上print的内容是打在进程的error流而不是input流,所以搞了好一会儿,最...
分类:
编程语言 时间:
2014-05-23 10:33:25
阅读次数:
562
linux shell 命令
什么是Shell?
Shell 是连接操作系统内核 与 用户 的接口。
终端是shell的表现形式。
什么是Shell编程?
Shell 脚本语言加上linux 命令语句就构成了shell程序。优点在于批量处理、不用用户每次手动输入。
bash是shell程序解释器的一种。
常用命令
pwd:print working directory,打印工...
分类:
系统相关 时间:
2014-05-22 10:39:17
阅读次数:
442
p是输入目录代码如下importosdefgetDirList(p):#b=[];filepath=piffilepath=="":returnbfilepath=filepath.replace("/","\\")iffilepath[-1]!="\\":filepath=filepath+"\\"a=os.listdir(filepath)#print(a)forxina:path=filepath+xprint(path)ifos.path.isdir(path):c=getDirLi..
分类:
编程语言 时间:
2014-05-21 01:31:14
阅读次数:
417
编程题:学生成绩评分#include<stdio.h>voidmain(){intscore;printf("请输入学生分数:"); scanf("%d",&score); switch(score/10) {case10: case9:printf("成绩优秀\n");break;/*成绩在90~100分*/ case8:printf("成绩良好\n");break;/*成绩在80~89分*/ case7:print..
分类:
其他好文 时间:
2014-05-21 00:38:21
阅读次数:
356