sed xargs 이용해서 파일 이름 일부분 변경하기

· 2012-04-26 (목) 23:38:05 · 2384
 
ls * | sed -e 'p;s/foo/bar/' | xargs -n2 mv
 
 
sed [OPTION]
 
  -e script, --expression=script
                 add the script to the commands to be executed
 
 
xargs [OPTION]
 
      --max-args=max-args, -n max-args
              Use at most max-args arguments per command line.  Fewer than max-args arguments will be used if the size (see the -s option)  is  exceeded,  unless
              the -x option is given, in which case xargs will exit.
              
              
bulk rename files with sed, one-liner
Renames all files in a directory named foo to bar.
foobar1 gets renamed to barbar1
barfoo2 gets renamed to barbar2
fooobarfoo gets renamed to barobarfoo
 
 
 
[root@oracle test1]# ls
footest1  testfoo1
 
[root@oracle test1]# ls * | sed -e 'p;s/foo/bar/' | xargs -n2 mv
[root@oracle test1]# ls
bartest1  testbar1
 
 
 
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
node.js 12-05-03 조회 5,152
JavaScript 12-05-03 조회 3,468
Linux 12-05-03 조회 3,110
Linux 12-05-03 조회 1,648
Flash 12-05-02 조회 3,196
Flash 12-05-02 조회 4,329
Flash 12-05-02 조회 3,162
JavaScript 12-05-02 조회 2,456
JavaScript 12-05-02 조회 2,560
JavaScript 12-05-02 조회 2,409
Linux 12-05-02 조회 1,754
기타 12-05-01 조회 2,608
PHP 12-04-30 조회 2,500
기타 12-04-30 조회 2,376
Flash 12-04-30 조회 3,220
Flash 12-04-30 조회 3,312
jQuery 12-04-28 조회 3,420
Linux 12-04-27 조회 1,664
Linux 12-04-27 조회 2,212
Linux 12-04-27 조회 2,158
Linux 12-04-26 조회 2,407
Linux 12-04-26 조회 3,070
Linux 12-04-26 조회 2,234
Linux 12-04-26 조회 2,175
Linux 12-04-26 조회 2,498
Linux 12-04-26 조회 2,787
Linux 12-04-26 조회 1,928
Linux 12-04-26 조회 8,521
Linux 12-04-26 조회 1,906
Linux 12-04-26 조회 2,385