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

Batch file renaming in linux and unix

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

I'm going to remove the suffix .gz from the gzip compressed file:

Method 1:

[root@test mysql] # touch test1 test2 test3

[root@test mysql] # gzip *

[root@test mysql] # ls

Test1.gz test2.gz test3.gz

[root@test mysql] # ls-l * .gz | xargs rename .gz ""

[root@test mysql] # ls-l * .gz

Ls: * .gz: there is no such file or directory

[root@test mysql] ls

Test1 test2 test3

This method in HP-unix will prompt xargs parameter rename is invalid, what to do, don't worry, please see the next method.

Method 2:

[root@test mysql] # touch test1 test2 test3

[root@test mysql] # gzip *

[root@test mysql] # ls

Test1.gz test2.gz test3.gz

[root@test mysql] # ls-l * .gz | awk'{oldname=$9;sub (/ .gz $/, "); print oldname,$9}'| xargs-N2 mv

[root@test mysql] # ls * .gz

Ls: * .gz: there is no such file or directory

[root@test mysql] # ls

Test1 test2 test3 note: the argument-N2 passed to xargs here is the key, instructing xargs to take two Field from the standard input at a time and pass it to the command to be executed as a parameter. Otherwise, it will be fetched from the standard input until the command line just does not exceed the LINE_MAX. Ok, the second method solves the problem of batch file renaming in hp-unix

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