빅

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

· 2012-04-26 (목) 23:38:05 · 862
 
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
 
 
 
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

6,077건

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
12-04-27 조회 712
12-04-27 조회 800
12-04-27 조회 704
12-04-26 조회 658
12-04-26 조회 940
12-04-26 조회 986
12-04-26 조회 677
12-04-26 조회 933
12-04-26 조회 1,502
12-04-26 조회 734
12-04-26 조회 1,555
12-04-26 조회 605
12-04-26 조회 863
12-04-26 조회 633
12-04-26 조회 868
12-04-26 조회 703
12-04-26 조회 1,056
12-04-26 조회 1,113
12-04-26 조회 980
12-04-26 조회 2,823
12-04-26 조회 606
12-04-26 조회 859
12-04-26 조회 784
12-04-26 조회 1,276
12-04-26 조회 992