- ssh: Could not resolve hostname + cron job
需要自动化执行 cron job,脚本主要功能就是 git push 到远程仓库。
解决方法:
在脚本中添加:
#!/bin/bash
## Git
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/ssh_key1
ssh-add ~/.ssh/ssh_key2
ssh-add -l
## Job
cd ~/repo/blog/
make publish
cd ~/repo/gtd/
make publish