pillarhuang

how to ssh with router

极路由:p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Helvetica Neue'; color: #454545} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Helvetica Neue'; color: #454545; min...

[git] clean untracked files

# 删除 untracked files git clean -f   # 连 untracked 的目录也一起删掉 git clean -fd   # 连 gitignore 的untrack&n...

shell常用命令

获取当前时间戳time_stamp=`date '+%Y%m%d%H%M'` echo $time_stamp...

7z命令解压用法

打包./test/目录下所有文件,但不包含目录7z.exe a ./test.zip ./test/*...

tar命令批量解压方法

转自:http://www.linuxren.net/shell/12224M2010.html第一种:for tar in *.tar.gz;  do tar xvf $tar; done for tar in *.tar.bz2;&n...

shell笔记

 # 批量将dos文件转换成unix文件:find ./ -name "*.*" | xargs dos2unix...