Fix “Permissions are too open … private key will be ignored”

If you are getting this error then you probably reset the permissions on your hidden .ssh directory in your user folder, and your keys aren’t going to work anymore. It’s very important that these files not be writable by just anybody with a login to the box, so openssh will give you an error if you try to use them. Problem The full error message: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0744 for '/home/geek/.ssh/id_rsa' are too open. It is recommended that your private......

统计当前目录下的文件/文件夹 数量

统计当前目录下的 文件夹 总数$ ls -l | grep '^d' | wc -l 统计当前目录下的 文件 总数$ ls -l | grep '^-' | wc -l 递归统计当前目录下的 文件 总数$ ls -lR | grep '^-' | wc -l

快速拉取并合并代码,用shell脚本让你的工作流duang起来

作为一只代码🐒,每天上班的第一件事必须是打开IDE开发工具,然后拉取代码,合并代码;查收回复邮件。如果工程比较多,或者周一的时候,挨个在每个工程上点右键-->fetch-->merge代码,如此往复每个工程,这酸爽简直😂了~ 我每......