存档

2010年7月 的存档

jquery的几个UI插件

2010年7月4日 没有评论

看到别人用ThickBox,去ThickBox官方看

http://jqueryui.com/demos/dialog/

http://colorpowered.com/colorbox/core/example1/index.html

http://fancybox.net/

分类: jquery/JS 标签:

chpasswd 批量修改linux用户密码

2010年7月4日 没有评论

AME

chpasswd – update password file in batch
SYNOPSIS

chpasswd [-e]
DESCRIPTION

chpasswd reads a file of user name and password pairs from standard input and uses this information to update a group of existing users. Without the -e switch, the passwords are expected to be cleartext. With the -e switch, the passwords are expected to be in encrypted form. Each line is of the format
user_name:password
The named user must exist. The supplied password will be encrypted as necessary, and the password age updated, if present.

This command is intended to be used in a large system environment where many accounts are created at a single time.

分类: Linux 标签:

linux 增加一个用户,账号在一个月后过期

2010年7月4日 没有评论
useradd -e `date -d 'next month' +'%Y-%m-%d'` xxxx
分类: Linux 标签: