cp A B
A 를 B 로 파일 복사
cp -r
디렉토리 복사
cp file1 file2 file3 Folder/
여러파일 복사
cp -v
명령결과 확인
cp -n
파일 덮어쓰지 않기
cp -i
파일 덮어쓰기 물어보기
cp *.txt Folder/
파일 확장자가 .txt 인 파일만 복사
cp A B
A 를 B 로 파일 복사
cp -r
디렉토리 복사
cp file1 file2 file3 Folder/
여러파일 복사
cp -v
명령결과 확인
cp -n
파일 덮어쓰지 않기
cp -i
파일 덮어쓰기 물어보기
cp *.txt Folder/
파일 확장자가 .txt 인 파일만 복사
댓글