Monthly Archives: July 2020

REGEX at awk file

More complex awk text processing is better to put in the file. And there can be regex filter as well. Below is a simple example utilizing awk code in the file xml-info.awk, which prints information only for XML files. $ … Continue reading

Posted in Blogroll, workday | Leave a comment

ssh password-less

Here are steps, how to do it in Linux type environment on LOCAL host: USER_REMOTE=username@remote-host ssh-keygen -t rsa #no password ssh $USER_REMOTE mkdir -p .ssh cat .ssh/id_rsa.pub | ssh $USER_REMOTE ‘cat >> .ssh/authorized_keys’ ssh $USER_REMOTE ‘chmod 700 .ssh; chmod 640 … Continue reading

Posted in workday | Leave a comment