Skip to content

Instantly share code, notes, and snippets.

@mohemohe
Created August 1, 2017 02:17
Show Gist options
  • Select an option

  • Save mohemohe/574027545d3d5df5df1c7044045d1262 to your computer and use it in GitHub Desktop.

Select an option

Save mohemohe/574027545d3d5df5df1c7044045d1262 to your computer and use it in GitHub Desktop.
SSHのパーミッションがぶっ壊れて辛かった
#!/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