리눅스 cp 덮어쓰기 cp overwrite 무시, cp alias 무시하기 [root@localhost data]# cp hello.txt hello2.txt cp: overwrite `hello2.txt'? cp 중복 파일 존재시 overwrite 질문 상황 수작업의 경우 y를 눌러주면 되지만, 파일 갯수가 많거나 스크립트 작업시 문제 발생 [root@localhost data]# cp -f hello.txt hello2.txt cp: overwrite `hello2.txt'? -f 옵션을 넣어도 소용없음 [root@localhost data]# which cp alias cp='cp -i' /usr/bin/cp cp 에대한 alias로 --interactive(덮어쓸 때 대화식 진행) 옵션이 있어서..