Posts tagged as:

unix

SCP SSH custom ports

by JCOctober 21, 2008 Settings

If you use SSH SCP commands you may of noticed a subtle and annoying difference in the way you specifcy a custom port. SSH uses a lowercase p, whereas SCP requires an uppercase P:
ssh -p 08098
scp -P 09809

0 comments Read the full article →

Unix tip: append lines from a text file to another text file

by JCJuly 28, 2008 Settings

awk -F, ‘{print $0}’ a-text-file.txt >> another-text-file.text

0 comments Read the full article →