=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2384 - July 12, 2006
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
rm *
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2384 - July 12, 2006
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
rm *
디렉토리의 파일들의 뜻하지 않은 삭제를 방지하기 위해서는 "-i"라는 파일을 만들어
주면 된다. 이 파일은 본쉘에서는 다음과 같이 입력을 하면 된다.
$ > -i
(여기서 $는 프롬프트 기호. 따라서 입력할 것은 > 과 -i임.
바로 리다이렉션을 하여 -i 파일로 저장함)
이 파일은 디렉토리의 맨 처음에 있어서 다음과 같이 입력한다면
rm *
rm 명령은 다음과 같이 입력한 것으로 가정하여 처리한다.
rm -i *
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
OOPS.. RM STAR
To prevent accidental removal
of files in a directory you
can create a file called "-i"
this is done from a bourne
shell by typing:
> -i
this will be the first file in
the directory so if you type:
rm *
The rm command assumes you have typed:
rm -i *
To prevent accidental removal
of files in a directory you
can create a file called "-i"
this is done from a bourne
shell by typing:
> -i
this will be the first file in
the directory so if you type:
rm *
The rm command assumes you have typed:
rm -i *
반응형