Tag: osx

0

Open VSCode From Command Line

Open Visual Code and press Command + Shift + P then type “Shell” in command palette now you are able to find this option like Shell Command : Install code in PATH from suggested list in command pale

0

Create New SSH Keys on Mac OSX Sierra

Generate new keys osx sierrassh-keygen -t rsa Set permissionssudo chmod 600 ~/.ssh/id_rsa cat ~/.ssh/id_rsa Check newly created keyssh-keygen -l -f ~/.ssh/id_rsa.pub Copy public key to

0

Install Sshpass on OSX

Ever needed to run ssh commands from a non-interactive shell, and not being able to use keys? Well sshpass is what you need! I use it for running ssh commands from Automator scripts on OSX. It is qui