scpまたはcp -Tのrsyncアナログ(ターゲットをファイルとして扱う)

scpまたはcp -Tのrsyncアナログ(ターゲットをファイルとして扱う)

これにより、次のことcpができます。

$ mkdir q
$ touch s
$ cp -T s q  # I need same effect with scp and/or rsync.
cp: cannot overwrite directory 'q' with non-directory
$ ls q

scp1つのコマンドで同じ効果を使用または取得する方法はrsync?つまり、ターゲットがディレクトリの場合は、実際のファイル転送を必要とせずにゼロ以外の終了コードで終了したいと思います。私はsファイルをディレクトリに入れたくありませんq

もちろん個別にも確認できます。問題は、1つのコマンドでこれを行う方法です。特に同時実行の場合。

答え1

問題のリモートディレクトリが存在すると停止します。

if ! ssh user@host "[[ -d /path/to/directory ]]"; then
    # do your scp or rsync
else
    echo "Remote location is a directory.  Aborting." 1&>2
    exit 1
fi

これを線に置き換えるには:

ssh user@host "[[ -d /path/to/directory ]]" || <<scp or rsync>>

答え2

オプション:

ssh remote-server 'cat > /tmp/asd' < /tmp/qwe

しかし、パラメータではありません。

例:

$ ssh localhost 'cat > /tmp/oi' < /tmp/qwe ; echo $?
Authenticated to localhost ([::1]:22).
bash: /tmp/oi: Is a directory
Transferred: sent 2832, received 2548 bytes, in 0.0 seconds
Bytes per second: sent 60414.8, received 54356.2
1
$ ssh localhost 'cat > /tmp/asd' < /tmp/qwe ; echo $?                                                                                                                                                                     
Authenticated to localhost ([::1]:22).
Transferred: sent 2832, received 2496 bytes, in 0.0 seconds
Bytes per second: sent 62499.8, received 55084.5
0
$ ls -l /tmp/{qwe,asd,oi}                                                                                                                                                                                                 
-rw-r--r-- 1 george george    4 Apr 19 21:21 /tmp/asd
-rw-r--r-- 1 george george    4 Apr 19 21:19 /tmp/qwe

/tmp/oi:
total 0

関連情報