wget 指定目录
在使用 wget 命令时,如果你想要指定下载文件的目录,可以使用 -P 或 –directory-prefix 选项来指定本地目录。
例如,如果你想要将文件下载到 /path/to/directory,你可以这样做:
wget -P /path/to/directory http://example.com/file.txt
或者使用–directory-prefix:
wget --directory-prefix=/path/to/directory http://example.com/file.txt
如果你想要下载多个文件到同一个目录,只需要多次使用 -P 或 –directory-prefix 选项即可。例如:
wget -P /path/to/directory http://example.com/file1.txtwget -P /path/to/directory http://example.com/file2.txt
以上命令会将 file1.txt 和 file2.txt 下载到 /path/to/directory 目录下。
End