- 로 시작하는 파일명 삭제하기
리눅스/OS 일반2023. 3. 31. 08:54
반응형
리눅스 쉘에서 파일명앞에 - 가 붙어 있어 삭제하기 어려운 경우가 있었습니다.
명령 뒤에 따라오는 옵션으로 판단하고 삭제가 되지 않았던 것인데
알고보면 삭제 방법은 간단합니다.
-로 시작되는 파일 확인
# ls
-test.txt
삭제 실패 명령어들
# rm -test.txt
rm: 부적절한 옵션 -- 't'
Try 'rm ./-test.txt' to remove the file `-test.txt'.
Try 'rm --help' for more information.
# rm \-test.txt
rm: 부적절한 옵션 -- 't'
Try 'rm ./-test.txt' to remove the file `-test.txt'.
Try 'rm --help' for more information.
# rm '-test.txt'
rm: 부적절한 옵션 -- 't'
Try 'rm ./-test.txt' to remove the file `-test.txt'.
Try 'rm --help' for more information.
# rm "-test.txt"
rm: 부적절한 옵션 -- 't'
Try 'rm ./-test.txt' to remove the file `-test.txt'.
Try 'rm --help' for more information.
삭제 성공 명령어
디렉토리를 포함하여 삭제할 파일명을 지정하면 됩니다.
# rm ./-test.txt
rm: remove 일반 빈 파일 `./-test.txt'? y
반응형
'리눅스 > OS 일반' 카테고리의 다른 글
curl 명령으로 telegram 메세지 보내기 (Bot Token, Chat ID 필요) (0) | 2023.04.26 |
---|---|
Openssl 로 자체 서명 인증서 (SSL) 생성하기 (0) | 2023.04.11 |
Rocky Linux 8.x 에서 Let's encrypt 설치 및 SSL 발급받기 (와일드카드) (0) | 2023.03.14 |
sed 명령어로 특정 문자가 속한 라인만 수정하기 (0) | 2023.02.14 |
SSH 접속 에러 : Unable to negotiate with 192.168.10.2 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss (0) | 2023.01.06 |
댓글()