python - 管道符和ssh傳文件
問題描述
看到可以用一條命令傳輸文件
gzip -c aa.txt | ssh root@192.168.1.1 ' gunzip -c - > /home/bb.txt'
請(qǐng)問這條命令怎么理解?還有,發(fā)現(xiàn)對(duì)文件夾進(jìn)行這樣的操作會(huì)失敗,有什么辦法傳輸文件夾么?求指教
問題解答
回答1:命令參數(shù)解釋:gzip -h
Usage: gzip [OPTION]... [FILE]...Compress or uncompress FILEs (by default, compress FILES in-place).Mandatory arguments to long options are mandatory for short options too. -c, --stdout write on standard output, keep original files unchanged -d, --decompress decompress -f, --force force overwrite of output file and compress links -h, --helpgive this help -l, --listlist compressed file contents -L, --license display software license -n, --no-name do not save or restore the original name and time stamp -N, --namesave or restore the original name and time stamp -q, --quiet suppress all warnings -r, --recursive operate recursively on directories -S, --suffix=SUF use suffix SUF on compressed files -t, --testtest compressed file integrity -v, --verbose verbose mode -V, --version display version number -1, --fastcompress faster -9, --bestcompress better --rsyncable Make rsync-friendly archiveWith no FILE, or when FILE is -, read standard input.
gunzip -h
Usage: gzip [OPTION]... [FILE]...Compress or uncompress FILEs (by default, compress FILES in-place).Mandatory arguments to long options are mandatory for short options too. -c, --stdout write on standard output, keep original files unchanged -d, --decompress decompress -f, --force force overwrite of output file and compress links -h, --helpgive this help -l, --listlist compressed file contents -L, --license display software license -n, --no-name do not save or restore the original name and time stamp -N, --namesave or restore the original name and time stamp -q, --quiet suppress all warnings -r, --recursive operate recursively on directories -S, --suffix=SUF use suffix SUF on compressed files -t, --testtest compressed file integrity -v, --verbose verbose mode -V, --version display version number -1, --fastcompress faster -9, --bestcompress better --rsyncable Make rsync-friendly archiveWith no FILE, or when FILE is -, read standard input.Report bugs to <bug-gzip@gnu.org>.
不知道鬧哪樣,兩條命令的幫助文檔是一樣的,開發(fā)者偷懶了
也就是說 -c 不壓縮文件,而是直接輸出到標(biāo)準(zhǔn)輸出。
gunzip -,不是從文件接收壓縮文件,而是從標(biāo)準(zhǔn)輸入接收。
|:管道>:重定向
整條命令分析gzip -c aa.txt | ssh root@192.168.1.1 'gunzip -c - > /home/bb.txt'
gzip -c aa.txt:壓縮aa.txt文件,并將壓縮后的結(jié)果輸出到標(biāo)準(zhǔn)輸出
ssh root@192.168.1.1 '命令':在遠(yuǎn)程機(jī)器上執(zhí)行命令
命令gunzip -c -:解壓文件,原壓縮文件是由標(biāo)準(zhǔn)輸入傳入的,輸出結(jié)果直接輸出到標(biāo)準(zhǔn)輸出
> /home/bb.txt:將標(biāo)準(zhǔn)輸出重定向到文件/home/bb.txt
對(duì)文件夾進(jìn)行這樣的操作會(huì)失敗gzip不支持對(duì)目錄操作
回答2:你要么完全換用netcat來(lái)收發(fā)。要么,本地tar壓縮一下,對(duì)端解壓縮。
回答3:管道是將前一個(gè)命令輸出作為輸入。 也可以先壓縮成一個(gè)臨時(shí)文件,再用scp
相關(guān)文章:
1. javascript - 如果所有請(qǐng)求都放到actions 里面,那拿到的數(shù)據(jù)應(yīng)該 放在哪里,state 還是vue實(shí)例里面的data?2. html - eclipse 標(biāo)簽錯(cuò)誤3. javascript - js里首尾相接輪播的原理是什么?4. 求大神幫我看看是哪里寫錯(cuò)了 感謝細(xì)心解答5. php自學(xué)從哪里開始?6. javascript - JS設(shè)置Video視頻對(duì)象的currentTime時(shí)出現(xiàn)了問題,IE,Edge,火狐,都可以設(shè)置,反而chrom卻...7. javascript - 數(shù)組原聲方法中的一段代碼8. 數(shù)據(jù)庫(kù) - MySQL 單表500W+數(shù)據(jù),查詢超時(shí),如何優(yōu)化呢?9. javascript - 怎么實(shí)現(xiàn)移動(dòng)端頁(yè)面滑動(dòng)切換,從1可以滑到2 但是不能從2滑回1 這樣的效果呢?10. phpstady在win10上運(yùn)行
