我是靠谱客的博主 专注可乐,这篇文章主要介绍效率工具(fswatch,rsync),现在分享给大家,希望可以做个参考。

mac 安装 brew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
 
安装 fswatch:(参考 https://stackoverflow.com/questions/1515730/is-there-a-command-like-watch-or-inotifywait-on-the-mac)
brew install fswatch
 
% cat fswatch_code.sh
#scp -i mengmai.pem -r /Users/yao.yao/Downloads/repos/  hadoop@ec2-13-233-83-154.ap-south-1.compute.amazonaws.com:/mnt/yaoyao/repos/
file_path=$1
relative_path=${file_path:31} # len('/Users/yao.yao/Downloads/repos/')=31
echo `date` "rsync code:" ${file_path}

# remote
rsync -ru -e "ssh -i mengmai.pem" /Users/yao.yao/Downloads/repos/${relative_path} hadoop@ec2-13-233-83-154.ap-south-1.compute.amazonaws.com:/mnt/yaoyao/repos/${relative_path}

echo `date` "rsync code done:" ${file_path}
 
运行:
nohup sh fswatch_code.sh > fswatch.out &

转载于:https://www.cnblogs.com/yaoyaohust/p/10363162.html

最后

以上就是专注可乐最近收集整理的关于效率工具(fswatch,rsync)的全部内容,更多相关效率工具(fswatch内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部