frankly speaking, i hope to get a higher salary.
yours frankly= yours sincerely = sincerely yours =yours truly = parted from , beloved : she refused to be parted from her beloved cat. = yours beloved
my: mine, your: yours, his:his , her:hers, their: theirs, 前者表示形容词性 物主代词,后面要接名词, 后者是名词性物主代词:
this is your book. this is book of yours.
faith: n. [fei0], =belief, trust: i have faith in your talents. faithfully
命令格式: 命令 【选项】 参数 : 命令 参数 【选项】 即: 有些(少数)命令可以把选项放在最后, 如: mount /dev/sda1 /mnt/WinC -t ntfs -o iocharset=cp936
find . -name "test" -type f -mtime +5 -ok/exec ls -l {} \;
// 一般选项: 短选项(单字母)的用-, 长选项(单词)用--, 但也有例外的, 如find -name (长选项用了单线-).
linux中用来表示时间的: min=分钟, time=天数:
amin atime(表示访问过的) , cmin ctime(改变状态的 ), mmin , mtime( 表示修改文件数据内容的):
find -name "in*" -type f -perm 644 -mtime 0 -exec ls {} \; : -exec 后面接 : 命令 {} \; {}之间没有空格, {} 和\;之间有空格, 而且后面不要用引号.
--------------------------------------------------------------
原文:http://www.cnblogs.com/bkylee/p/4985269.html