Search Results

Search: Posts Made By: BrownBob
1,858
Posted By sathyaonnuix
Can you confirm the key is added into...
Can you confirm the key is added into ~/.ssh/authorized_keys of the remote server.
2,101
Posted By codemaniac
You can use associative arrays like below , ...
You can use associative arrays like below ,

awk -F"," '{math[$9]+=$22;}END{for (i in math) {print i,math[i]}}' sampleInput.txt
2,101
Posted By RudiC
awk -F, '{tot1[$9]+=$22;tot2[$9]+=$23} ...
awk -F, '{tot1[$9]+=$22;tot2[$9]+=$23}
END {print "name: total1 total2 total";
for (i in tot2) print i, tot1[i], tot2[i], tot1[i]+tot2[i]
}
'...
3,221
Posted By pamu
First try to read about scp...
First try to read about scp (https://www.unix.com/man-page/linux/1/scp/) , rsync (https://www.unix.com/man-page/linux/1/rsync/) , find with mtime and ssh
...
3,221
Posted By jim mcnamara
You need to have ssh-keys for passwordless ssh...
You need to have ssh-keys for passwordless ssh (scp, sftp, ssh).

ssh-keygen: password-less SSH login (http://rcsg-gsir.imsb-dsgi.nrc-cnrc.gc.ca/documents/internet/node31.html)

Basically what...
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 07:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy