shell
清醒思考
有问题可以私信我.
展开
-
iterm2代码补全插件Incremental
【代码】iterm2代码补全插件Incremental。原创 2022-10-06 11:09:09 · 630 阅读 · 0 评论 -
mac设置alias命令
mac设置alias命令vi ~/.zshrcsource ~/.zshrc常用命令alias f="top -l 1 | head -n 10 | grep PhysMem" # 查看可用内存alias p="sudo purge" # 整理释放内存alias v="export http_proxy=http://127.0.0.1:7890;export https_proxy=http://127.0.0.1:7890" # 终端设置翻墙alias nv="unset http_pr原创 2021-12-08 21:59:11 · 4158 阅读 · 1 评论 -
shell :批量打包文件夹
shell :批量打包文件夹#!/bin/bashFILE=`ls`for i in $FILEdo zip -rq $i.zip $idone原创 2021-05-24 13:11:01 · 529 阅读 · 0 评论 -
统计代码行数
find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.h" -or -name "*.rss" ")" -print | xargs wc -l原创 2017-07-17 11:02:57 · 321 阅读 · 0 评论 -
mac安装命令检查插件thefuck
brew install thefuck添加eval $(thefuck --alias)# You can use whatever you want as an alias, like for Mondays:eval $(thefuck --alias fuck)到.bash_profile使用:原创 2017-07-27 11:27:09 · 1246 阅读 · 0 评论