smilefish1987 / blogs

the blogs of me
1 stars 0 forks source link

2015 每天一条 Linux 命令 #14

Open smilefish1987 opened 9 years ago

smilefish1987 commented 9 years ago

#2015 每天一条 Linux 命令

1. $ cal -y   # 现实全年的日历,高亮当天

2. $ sudo ntpdate  serverip   #同步时间

3. $ du -a --max-depth=1 | sort -n   #按大小排序子目录

4. $ :%s/<control-VM>//g    #在vim清理^M

5.$find . -type f  -name "*.php"  -exec iconv -f iso-8859-1 -t utf-8 "{}" -o /path/to/destination/"{}" \;   #php文件转utf-8