随机数&history格式-133

[root@CentOS-5 ~]# tr -dc _A-Z-a-z#$%^*-0-9 </dev/urandom |head -c8

_vDk+B0u
[root@CentOS-5 ~]# tr -dc [0-9] </dev/urandom |head -c8
40]135
[1[root@CentOS-5 ~]# tr -dc 0-9 </dev/urandom |head -c8  
61039533
[root@CentOS-5 ~]# tr -dc 0-3 </dev/urandom |head -c8  
23332233
[root@CentOS-5 ~]# tr -dc 0-3 </dev/urandom |head -c6
330333
[root@CentOS-5 ~]# HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "
[root@CentOS-5 ~]# history
 149  2012-05-17 06:52:47 HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "
 150  2012-05-17 06:52:49 history

你可能感兴趣的:(linux,history)