linux tar 排除指定的文件夹及文件

[qdds]@ht01[/ogg/bk]$ls -lrt
total 454636
-rw-r-----. 1 oracle oinstall 292397056 Dec 21 05:13 full_qddds_2020122101vijtmc_1_1
-rw-r-----. 1 oracle oinstall 1097728 Dec 21 05:13 full_qddds_2020122102vijto3_1_1
-rw-r-----. 1 oracle oinstall 161922560 Dec 21 05:13 arc_qdds_2020122103vijto7_1_1
-rw-r-----. 1 oracle oinstall 10125312 Dec 21 05:13 ctl_qdds_2020122104vijtoe_1_1
-rw-r--r--. 1 oracle oinstall 0 Dec 21 05:35 2020
drwxr-xr-x. 2 oracle oinstall 4096 Dec 21 05:37 arc

tar zcvf bk.tar --exclude=bk/2020 --exclude=bk/arc bk

[qdds]@ht01[/ogg]$tar zcvf bk.tar --exclude=bk/2020 --exclude=bk/arc bk
bk/
bk/ctl_qdds_2020122104vijtoe_1_1
bk/full_qddds_2020122101vijtmc_1_1
bk/arc_qdds_2020122103vijto7_1_1
bk/full_qddds_2020122102vijto3_1_1
[qdds]@ht01[/ogg]$rm -r bk
[qdds]@ht01[/ogg]$tar zxf bk.tar

[qdds]@ht01[/ogg/bk]$ls -lrt
total 454632
-rw-r-----. 1 oracle oinstall 292397056 Dec 21 05:13 full_qddds_2020122101vijtmc_1_1
-rw-r-----. 1 oracle oinstall 1097728 Dec 21 05:13 full_qddds_2020122102vijto3_1_1
-rw-r-----. 1 oracle oinstall 161922560 Dec 21 05:13 arc_qdds_2020122103vijto7_1_1
-rw-r-----. 1 oracle oinstall 10125312 Dec 21 05:13 ctl_qdds_2020122104vijtoe_1_1

原文地址:https://www.cnblogs.com/omsql/p/14166225.html