본문 바로가기
LINUX

linux rename 명령어

by Rainbound-IT 2022. 8. 30.
반응형
ubuntu@was01:/home/download$ sudo rename elasticsearch-8.1.2 elasticsearch-8.1.2-node-2 ./elasticsearch-8.1.2
Bareword "elasticsearch" not allowed while "strict subs" in use at (user-supplied code) line 3.

rename시 위 와같은 에러 발생

아래와 같은 형식을 해야함

 

rename 's/[이전이름]/[바꾸고싶은이름]/g' [바꾸고싶은파일경로]

s는 바꾼다는 의미이고

g는 전역을 바꾼다는 뜻이다.

 

ubuntu@was01:/home/download$ sudo rename 's/elasticsearch-8.1.2/elasticsearch-8.1.2-node-2' ./elasticsearch-8.1.2
Substitution replacement not terminated at (user-supplied code)

' ' 사이 마지막에 / 를 붙여 줘야함.

 

 

 

https://www.computerhope.com/unix/rename.htm

 

Linux rename command help and examples

Linux rename command help and information with rename examples, syntax, and related commands.

www.computerhope.com

 

https://steady-snail.tistory.com/267

 

[Ubuntu/Linux] rename 으로 한번에 이름 변경

상황 서버 관리를 하다가 수많은 파일의 이름을 한꺼번에 패턴을 잡아서 바꿔줘야하는 경우가 생겼다. 서버 환경은 다음과 같다. 서버 OS : Ubuntu 18.04 LTS rename 설치 확인 명령어 수많은 파일의 이

steady-snail.tistory.com

 

반응형

댓글