Posts

Showing posts from May, 2019

Linux ssh auto login

As simply as this: ssh-copy-id user@server.name ssh user@server.name And that is it no more password login!!!

VI search and replace command examples

VI search and replace command examples Let us say you would like to find a word called “foo” and replace with “bar”. First hit [Esc] key Type : (colon) followed by %s/foo/bar/ and hit [Enter] key. :%s/foo/bar/