Search Results

Search: Posts Made By: Big_Jeffrey
5,419
Posted By Scrutinizer
Unix utilities typically need a linefeed at the...
Unix utilities typically need a linefeed at the end of the line. You could try awk:

awk '/test12-42213.devserver.com/,/EndTime/; END{printf "\n"}' RS=, ORS=, file
or
awk -v...
31,181
Posted By Chubler_XL
I find it hard to believe that even 1 rsync will...
I find it hard to believe that even 1 rsync will not swamp your bandwidth as disk I/O should be WAY faster than the network.

If you want more speed try the -z (or --compress) rsync option and...
31,181
Posted By jim mcnamara
This will try to send all of the files: ...
This will try to send all of the files:

RHOST=srv245005
CCMD="ls /db/remote_backup_area"

for BackupFile in 'ssh -q oracle@${RHOST} ${CCMD}'; do
echo "attempting to copy file: "...
31,181
Posted By 244an
Shouldn't you have backticks in the for-line? ...
Shouldn't you have backticks in the for-line?
for BackupFile in `ssh -q oracle@${RHOST} ${CCMD}`; do
Showing results 1 to 4 of 4

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