Better formatting

这个提交包含在:
Theodotos Andreou 2018-07-03 23:29:55 +03:00
父节点 3d9af1dc93
当前提交 54e0aed621
共有 1 个文件被更改,包括 3 次插入0 次删除

查看文件

@ -3,6 +3,7 @@
## vim
* Set tab to 4 spaces:
```
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
```
@ -10,11 +11,13 @@
## Shell
* Find my public IP:
```
dig +short myip.opendns.com @resolver1.opendns.com
```
* Check if private and public ssh key match:
```
diff <(cat ~/.ssh/id_rsa.pub | cut -d' ' -f 2) <(ssh-keygen -y -f ~/.ssh/id_rsa | cut -d' ' -f 2)'
```