码迷,mamicode.com
首页 >  
搜索关键字:list    ( 54897个结果
linux vsftpd ftp服务器搭建
##学习总结##超级用户权限vsftpd安装(l)yuminstallvsftpdapt-getinstallvsftpdvsftpd配置(本地用户登陆限制在自己的主目录,/etc/vsftpd.conf)listen=YES(连接被拒绝时查看是否打开)chroot_list_file=/etc/vsftpd.chroot_listchroot_list_enable=YESallow_writeable_chroot=YES(..
分类:系统相关   时间:2016-05-09 07:13:29    阅读次数:162
Shell脚本学习笔记-循环结构
1. for循环语句 1.1. 语法格式: for var in list do commands done1.2 简单示例:...
分类:系统相关   时间:2016-05-09 07:04:38    阅读次数:208
61. Rotate List
...
分类:其他好文   时间:2016-05-09 06:56:57    阅读次数:156
多线程FTP下载日志脚本
#!/bin/bash ip_list=`cat $1` thead_num=5tmp_fifofile="/tmp/$$.fifo"mkfifo "$tmp_fifofile"exec 4<>"$tmp_fifofile"rm -f $tmp_fifofile for ((i=0;i<$thead ...
分类:编程语言   时间:2016-05-09 00:11:54    阅读次数:243
学习进度10
6H 1.整理了 文本框:TextView、EditText 按钮:Button、RadioButton、RadioGroup、CheckBox、ImageButton 列表:List、ExpandableListView、Spinner、AutoCompleteTextView、GridView、 ...
分类:其他好文   时间:2016-05-08 23:47:21    阅读次数:200
线性表的基本操作
#include<stdio.h>#include<stdlib.h>typedef struct { int *elem; int length; int listsize;}SqList;#define LIST_MAX 10#define LIST_ADD 2int InitList(SqLi ...
分类:其他好文   时间:2016-05-08 19:53:50    阅读次数:213
html 中的name,id ,value,class,list 作用与区别
name: 单独一个网页中,一个控件是否设置name不会影响这个网页功能的实现。当我们需要把这个控件 所关联的数据传递到数据库时,就必须设置name属性,否则这个值是没办法传到服务器保存的; id: 主要用于javascript; value: 主要用于赋值,如:<input type="butto ...
分类:Web程序   时间:2016-05-08 18:09:54    阅读次数:536
Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given 1->2 ...
分类:其他好文   时间:2016-05-08 16:46:36    阅读次数:112
Redis的安装及配置
Redis安装及主从配置 一、何为Redis redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)和zset(有序集合)。这些数据类型都支持push/pop、add/remove及取交集 ...
分类:其他好文   时间:2016-05-08 16:33:34    阅读次数:184
第六次作业
抽奖程序:用ArrayList类和random类import java.awt.*; import javax.swing.*; import java.awt.event.;import java.util.;import java.util.List; public class jRandom ...
分类:其他好文   时间:2016-05-08 13:34:49    阅读次数:110
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!