0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

LFTP の -x オプションで最上位の該当ディレクトリのみを除外する

Posted at

以下のディレクトリ構造の際
home/ 直下の img/ 以下は除外しつつ、home/upload/img/ 以下は同期したかった。

home/
 ├ img/
 │ └ dummyA.png
 └ upload/
   └ img/
     └ dummyB.png

よく紹介されている下記の指定をした場合、全階層を対象に除外されてしまう。

mirror --reverse -x img/ --delete /home /site
site/
 └ upload/

対処法

^\ を指定すると最上位のみが除外対象となる。

mirror --reverse -x ^\img/ --delete /home /site
site/
 └ upload/
   └ img/
     └ dummyB.png

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?