杂记

1.jstl的when标签不能单独使用,必须直接包含在choose下,后面可以不带otherwise

2.如何根据i结点删除文件?

temp$ ls -li
total 281552
666632 -rwxrwxrwx 1 ng_crm crmgrp 2279 Jul 06 2011 test.sh
667299 -rwxrwxrwx 1 ng_crm crmgrp 1746 Mar 05 19:40 temp.txt
temp$ find . -inum 666632 -ok rm {} \;

3.如何让find命令只查找当前目录?

find . ! -name "." -type d -prune -o -type f -name "*.txt" -print

4.

temp$ tar -t temp.tar
tar: /dev/rmt0: A file or directory in the path name does not exist.
temp$ tar -tf temp.tar
temp.jar
temp$ 

tar 命令需要 -f 参数指定tar包文件

5.

 

posted @ 2016-01-18 10:05  StupidTortoise  阅读(212)  评论(0编辑  收藏  举报