COMING SOON 🚀

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

 
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
 
 
 
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

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

+
제목 글쓴이 날짜 조회
13년 전 조회 516
13년 전 조회 576
13년 전 조회 504
13년 전 조회 449
13년 전 조회 750
13년 전 조회 795
13년 전 조회 472
13년 전 조회 736
13년 전 조회 1,319
13년 전 조회 546
13년 전 조회 1,352
13년 전 조회 417
13년 전 조회 666
13년 전 조회 438
13년 전 조회 670
13년 전 조회 517
13년 전 조회 872
13년 전 조회 913
13년 전 조회 800
13년 전 조회 2,634
13년 전 조회 419
13년 전 조회 680
13년 전 조회 590
13년 전 조회 1,086
13년 전 조회 813