Usefull Oneliners
转到文件
Theodotos Andreou 54e0aed621 Better formatting 2018-07-03 23:29:55 +03:00
LICENSE Initial commit 2018-06-08 13:28:44 +03:00
README.md Better formatting 2018-07-03 23:29:55 +03:00

README.md

Usefull Oneliners

vim

  • Set tab to 4 spaces:

    set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
    

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)'
    

References