Usefull Oneliners
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Theodotos Andreou 5ad7830fbf Typo il y a 5 ans
LICENSE Initial commit il y a 5 ans
README.md Typo il y a 5 ans

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 keys match:

    diff <(cat ~/.ssh/id_rsa.pub | cut -d' ' -f 2) <(ssh-keygen -y -f ~/.ssh/id_rsa | cut -d' ' -f 2)'
    

References