답변:
내가 아는 한 wget은 일반적으로 현재 작업 디렉토리로 다운로드됩니다. 디렉토리를 지정하는 다음과 같은 옵션이 있습니다.
1. 다운로드하려는 디렉토리로 변경 한 다음 wget 명령을 먼저 실행하십시오.
cd /home/yourname/Downloads
그런 다음 wget 명령을 실행하십시오.
wget http://download.files.com/software/files.tar.gz
다음과 같이 wget 명령에 디렉토리를 추가하십시오.
wget -P /home/yourname/Downloads http://download.files.com/software/files.tar.gz
/home/ohad/Downloads: Is a directory
오류가 발생했습니다. -O는 wget에게 파일로 다운로드하도록 지시합니다.
-P /target_dir
방법 1 : -P
다운로드 디렉토리를 지정하는 옵션 전달
디렉토리를 변경하려면 -P
wget 명령에 인수 를 추가해야합니다 .
wget -P /path/to/directory <download-url>
또는
wget --directory-prefix=prefix <download-url>
여기서 prefix 는 다운로드를 저장하려는 디렉토리입니다.
이 방법을 사용하면 -P
또는 --directory-prefix=prefix
다운로드 할 때마다 를 지정해야합니다 .
방법 2 : 별명을 사용하여 영구 기본 디렉토리 만들기
영구 기본 다운로드 디렉토리를 설정하려면 다음과 같이을 사용할 수 있습니다 alias
.
alias wget='wget --directory-prefix=prefix'
prefix
원하는 디렉토리로 변경 하고 alias 명령 .bashrc
을 설정하여 영구적으로 만드십시오.