cat myfile.tgz | ssh user@host "tar xzf - -C /some/dir"
O comando abaixo extrai o arquivo especificado em uma máquina remota:
tar -xzOf file.tar.gz file_you_want_to_extract | ssh user@host 'cat > /path/to/destination_file'
Meu requisito é que eu queira extrair todos os arquivos para a máquina remota. Como posso conseguir isso?
tar -xzOf file.tar.gz | ssh user@host 'cat > /path_dir'
Todos os arquivos em file.tar.gz devem ser extraídos no host remoto em / path_dir.
cat myfile.tgz | ssh user@host "tar xzf - -C /some/dir"
Tags tar