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

· 2012-04-26 (목) 23:38:05 · 2378
 
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에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
Linux 12-04-22 조회 1,735
Linux 12-04-22 조회 2,558
Linux 12-04-22 조회 2,127
JavaScript 12-04-22 조회 2,424
Linux 12-04-22 조회 2,710
MySQL 12-04-21 조회 2,875
Linux 12-04-21 조회 4,315
MySQL 12-04-21 조회 3,849
Linux 12-04-21 조회 1.4만
Linux 12-04-21 조회 2,226
Linux 12-04-21 조회 2,384
Linux 12-04-21 조회 1,455
Linux 12-04-21 조회 2,223
MySQL 12-04-20 조회 2,858
Linux 12-04-20 조회 2,229
Linux 12-04-20 조회 2,338
Linux 12-04-20 조회 1,759
Linux 12-04-20 조회 2,158
Linux 12-04-20 조회 3,150
node.js 12-04-20 조회 3,849
Linux 12-04-20 조회 2,111
PHP 12-04-20 조회 3,640
PHP 12-04-20 조회 3,156
JavaScript 12-04-19 조회 2,598
기타 12-04-19 조회 2,129
JavaScript 12-04-18 조회 4,118
PHP 12-04-18 조회 2,310
JavaScript 12-04-18 조회 2,007
JavaScript 12-04-17 조회 2,342
PHP 12-04-17 조회 2,813