文章目录
  1. 1. mac有用的命令行收藏

mac有用的命令行收藏

//显示隐藏文件的命令行,true为显示,false为隐藏,命令完成后需重启finder,这时再看就会看到隐藏文件

defaults write com.apple.finder AppleShowAllFiles -bool false 

\

—copy 目录必须加-r参数

cp
-r mobileWeb/
/Users/huguiqi/Public/workspace/weixing_travel/weiXinTravel
\

\

\

—去除svn信息

find
weiXinTravel/ -name “.svn” | xargs rm -rf
\

或者

find . -type d -name “.svn”|xargs rm -rf

\

–删除文件夹下的所有 .git 文件

find . -name “.git” | xargs rm -Rf

\

\

–how to print file size in megabytes?

—打印显示文件的大小

ls
-la

—当加上-h后就以B,K,M,G,T,P为单位显示了(根据文件大小自动以某种单位显示)

-h

When
used with the -l option, use unit suffixes: Byte, Kilobyte, Megabyte,
Gigabyte, Terabyte and Petabyte in order to reduce the number of digits
to three or less using base 2 for sizes.

ls
-lah

文章目录
  1. 1. mac有用的命令行收藏