web-dev-qa-db-ja.com

SCPテキストファイルの内容の変更

マシンAからファイルをコピーしようとしています:

apt policy openssh-client
openssh-client:
  Installiert:           1:7.2p2-4ubuntu2.4

マシンBへ:

apt-cache policy openssh-client
openssh-client:
    Installiert: 1:5.5p1-6+squeeze5

A:

scp myfile <server>:/myfile
md5sum myfile
2ba67c5e816350d4d2e2e7fd883037e7
file myfile
myfile: Python script, ASCII text executable

B:

md5sum myfile
8883620c2a0878da1db273101b55124d
file myfile
myfile: ASCII Java program text

テキストファイルを見ると、すべての行に最後の行よりも1つ多いスペースがあるようです。

import argparse, os, sys

from subprocess import check_output

def count_voicemails(dir):
    # find is faster than ls, since it does not check attributes
    command = 'find {}/INBOX -maxdepth 1 | wc -l'
    count   = int(check_output(command.split()))
    return count

次のようになります。

import argparse, os, sys

from subprocess import check_output

 def count_voicemails(dir):
       # find is faster than ls, since it does not check attributes
           command = 'find {}/INBOX -maxdepth 1 | wc -l'
               count   = int(check_output(command.split()))
                   return count
6
mzhaase

Scpコマンドは、ファイルをターゲットサーバーのルートに送信します-scp:ing to /myfile。後でファイルを見るときに、完全なパスを指定しているわけではありません。前の行からインデントを挿入するように構成されたエディターを使用してファイルの内容をコピーしようとしたことがあり、それがあなたが見ているファイルです。

14
Jenny D