答え1
このパラメータは非常に強力な代替式を--xform
好きなだけ取ります。sed
あなたの場合は、最後まですべてと一致するパターンを使用して/
から、何でも変更してください。
tar cvf allfiles.tar --xform='s|.*/||' $(<mylist.txt)
--show-transformed-names
新しい名前を見るには追加してください。
この置換は、コマンドラインで指定されたファイル名だけでなく、すべてのファイル名にも適用されます。したがって、たとえばファイルが1つあり、/a/b/c
リストにのみ指定されている場合、/a
最終ファイル名はthatc
ではなくthatですb/c
。あなたの場合のように、いつでもより明確で正確な代替リストを提供できます。
--xform='s|^tmp/path2/||;s|^tmp/||;s|^path3/||'
最初の文字は/
tarによって削除されるため(tarを使用しない限り-P
)、上記の式ではその文字が失われます。また、最長の一致が最初に実行されるようにディレクトリのリストを並べ替える必要があります。それ以外の場合は削除されたtmp/path2/
ため、一致はありません。tmp/
ただし、次のようにこのリストを自動的に作成できます。
--xform="$(sed <mylist.txt 's|[^/]*$||; s|^/||; s:.*:s|^&||;:' | sort | tr -d '\n')"
答え2
GNUを使用すると、いつでもどこでも使用tar
でき、すぐに機能します。-C
$ tree
.
├── 1
│ └── aaa
├── 2
│ └── bbb
└── 3
└── ccc
# Caveat: the directory change is always relative to directory tar is using *at
# that time*, so the following doesn't work:
$ tar -cf foo.tar -C 1 aaa -C 2 bbb -C 3 ccc
tar: 2: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
$ tar -cf foo.tar -C 1 aaa -C ../2 bbb -C ../3 ccc
$ tar tf foo.tar
aaa
bbb
ccc
# You can avoid the special case for the first directory by always specifying
# an absolute path:
$ tar -cf foo.tar -C $(pwd)/1 aaa -C $(pwd)/2 bbb -C $(pwd)/3 ccc
# Now let's create that automatically from your file:
$ cat mylist.txt
/tmp/1/aaa
/tmp/2/bbb
/tmp/3/ccc
$ while read -r line; do printf '-C %s %s ' $(dirname "$line") $(basename "$line") ; done < mylist.txt
-C /tmp/1 aaa -C /tmp/2 bbb -C /tmp/3 ccc
# That looks about right. Let's use it in our tar command:
$ tar -cvf foo.tar $(while read -r line; do printf '-C %s %s ' $(dirname "$line") $(basename "$line") ; done < mylist.txt)
aaa
bbb
ccc