unrar p -inul archive.rar
imprimirá o conteúdo do arquivo extraído na tela, mas ele concatenará todos os arquivos:
$ unrar p -inul archive.rar
content of first
file
and here is second fle
Então, se você tiver um arquivo no arquivo, poderá fazer isso:
$ unrar p -inul archive.rar | ssh serverb 'cat > file.from.archive'
Se você tiver muitos arquivos, poderá brincar com:
size_of_first_file=$(unrar l archive.rar| head -9| tail -1 | awk '{print $2}')
size_of_second_file=$(unrar l archive.rar| head -10| tail -1 | awk '{print $2}')
Ou coloque-o no circuito. e extraia arquivos usando dd
em vez de cat
:
$ unrar p -inul archive.rar | ssh serverb 'dd of=first_file.from.archive bs=1 count=$size_of_first_file'
--- editar ---
Meu POC:
#!/bin/bash
if [ $# -lt 3 ]
then
echo "Usage: $0 user@ssh_server rar_file remote_directory"
exit 1
fi
i=8
size=0
skip=0
ssh_server=$1
rar_file=$2
remote_directory=$3
until [ "${size}" == "---------" ]
do
let i=${i}+1
size=$(unrar l ${rar_file} | head -${i} | tail -1 | awk '{ print $2 }')
filename=$(unrar l ${rar_file} | head -${i} | tail -1 | cut -c 40- )
directory=$(echo ${filename} | sed -e 's,/[^/]\+,,')
if [ ${size} == "---------" ]
then
break
else
echo -e "[*] Extracting: ${filename} size: ${size} from: ${rar_file}"
unrar p -inul ${rar_file} | ssh ${ssh_server} "
cd ${remote_directory}
if [ ! -d ${directory} ]
then
mkdir -p ${directory}
fi
dd skip=${skip} bs=1 count=${size} of=${filename} 2> /dev/null"
let skip=${skip}+${size}
fi
done