Linux wget: Download đổi tên file sau khi link bị redirect - QuânSysAd's Blog

24 tháng 7 2017

Linux wget: Download đổi tên file sau khi link bị redirect

Bạn đang cần download một file bằng wget, nhưng trong đường dẫn không có tên file.

Ví dụ link sau

http://www.example.org/scripts/download_script.php?src_id=9750

Sau khi download bằng wget ta có thể chỉ nhận được file có tên là `download_script.php?src_id=9750`. Thật ức chế.


Để khắc phục việc này ta cần thêm tùy chọn --content-disposition để wget lưu tên file sau khi bị redirect

Ví dụ

wget --content-disposition 'http://www.example.org/scripts/download_script.php?src_id=9750'


Hoặc dùng tùy chọn --trust-server-names

Ví dụ:

wget --trust-server-names 'http://www.example.org/scripts/download_script.php?src_id=9750'


Chúc các bạn thành công.


Không có nhận xét nào: