效率工具(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/  [email protected]:/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} [email protected]:/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))