Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to package tar and exclude a file

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces you how to package tar and exclude a file, the content is very detailed, interested friends can refer to, hope to be helpful to you.

There are tar packages, and sometimes you need to exclude a file. This document provides two ways to do this.

Method one

[root@system1 testdir] # touch 1 2 3 4 5 6 7 b [root@system1 testdir] # ls1 2 3 4 5 6 7 b [root@system1 testdir] # tar zcvf a.tar.gz. / *-- exclude b # excludes the b file. / 1. Exclude b1. A.tar.gz 2 3 4 5 6 7 a.tar.gz b [root@system1 testdir] # mv a.tar.gz / tmp/test [root@ System1 testdir] # ls1 2 3 4 5 6 7 b [root@system1 testdir] # cd.. [root@system1 tmp] # cd test [root@system1 test] # lsa.tar.gz [root@system1 test] # tar-xvf a.tar.gz. / 1. Tar-xvf a.tar.gz.

Method two

[root@system1 testdir] # ls1 2 3 4 5 6 7 b [root@system1 testdir] # find. /-type f!-name 'b' | xargs tar caf a.tar.gz# excludes b file [root@system1 testdir] # ls1 2 3 4 5 6 7 a.tar.gz b [root@system1 testdir] # mv a.tar.gz / tmp/test [root@system1 testdir] # cd / tmp/test [root@system1 test] # lsa.tar.gz [root@system1 test] # Tar-xvf a.tar.gz. / 1. A.tar.gz 2. Root@system1 test 3. 4. 5. 6. A.tar.gz 7 [root@system1 test] # a.tar.gz 2 3 4 5 6 7 about how to package tar and exclude a file. I hope the above content can be of some help to you and learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report