빅

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

· 2012-04-26 (목) 23:38:05 · 2389
 
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,155
JavaScript 12-05-03 조회 3,474
Linux 12-05-03 조회 3,112
Linux 12-05-03 조회 1,653
Flash 12-05-02 조회 3,197
Flash 12-05-02 조회 4,333
Flash 12-05-02 조회 3,165
JavaScript 12-05-02 조회 2,457
JavaScript 12-05-02 조회 2,562
JavaScript 12-05-02 조회 2,410
Linux 12-05-02 조회 1,758
기타 12-05-01 조회 2,611
PHP 12-04-30 조회 2,503
기타 12-04-30 조회 2,378
Flash 12-04-30 조회 3,221
Flash 12-04-30 조회 3,312
jQuery 12-04-28 조회 3,423
Linux 12-04-27 조회 1,666
Linux 12-04-27 조회 2,215
Linux 12-04-27 조회 2,162
Linux 12-04-26 조회 2,410
Linux 12-04-26 조회 3,071
Linux 12-04-26 조회 2,236
Linux 12-04-26 조회 2,178
Linux 12-04-26 조회 2,499
Linux 12-04-26 조회 2,793
Linux 12-04-26 조회 1,929
Linux 12-04-26 조회 8,525
Linux 12-04-26 조회 1,910
Linux 12-04-26 조회 2,390