Created
August 1, 2017 02:17
-
-
Save mohemohe/574027545d3d5df5df1c7044045d1262 to your computer and use it in GitHub Desktop.
SSHのパーミッションがぶっ壊れて辛かった
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| find ~/.ssh -type d -exec chmod 700 {} + | |
| find ~/.ssh -type f -exec chmod 400 {} + | |
| find ~/.ssh -name '*.sshconf' | xargs -I_ chmod 600 _ | |
| chmod 600 ~/.ssh/config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment