wget으로 google drive에서 파일 다운

2021. 8. 12. 15:09OS/Linux

728x90

1. 구글드라이브에서 파일에 마우스 우클릭으로 공유 가능한 링크 생성 - 모든 사용자가 볼 수 있게 옵션 설정

2. https://drive.google.com/file/d/[FILEID]/view?usp=sharing 형태의 링크가 생성됨

3. wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=[FILEID]' -O FILENAME

용량이 크다면

$ curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=[FILEID]" > /dev/null
$ curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=[FILEID]" -o FILENAME

 

출처 https://nuggy875.tistory.com/73

728x90

'OS > Linux' 카테고리의 다른 글

find  (0) 2021.08.11
curl  (0) 2021.08.09
파일/디렉토리 개수 새기  (0) 2021.04.29
대량 파일 이동 ( 폴더 분할)  (0) 2021.04.29
zip, unzip  (0) 2021.04.26