tarでファイル移動

tar -- manipulate tape archives
http://www.freebsd.org/cgi/man.cgi?query=tar&apropos=0&sektion=0&manpath=FreeBSD+6.0-RELEASE+and+Ports&format=html

To move file hierarchies, invoke tar as

	   tar -cf - -C srcdir . | tar -xpBf - -C destdir

or more traditionally

	   cd srcdir ; tar -cf - . | (cd destdir ; tar -xpBf -)


でだ.この "-xpBf" の B ってなんだべ.
オイラ、コマンドのオプションとかって、全然憶えられません.


JM の tar のマニュアルより
http://www.linux.or.jp/JM/html/GNU_tar/man1/tar.1.html

  • B, --read-full-blocks

読み込みと同時にブロック化し直す (4.2BSDのパイプからの読み込み用)

なにを言っているのか、さっぱりわかりません.物わかりの悪いオイラ.