FILEID: 다운로드 링크 주소에 id={???}에 해당되는 값
* 일반 크기의 파일
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O FILENAME
* 큰 크기의 파일 ("파일이 너무 커서 Google에서 바이러스를 검사할 수 없습니다. 그래도 파일을 다운로드하시겠습니까?" 라고 뜨는 파일들)
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 FILDNAME
'실습 > Ubuntu' 카테고리의 다른 글
docker (nvidia-docker) 기본 사용 (0) | 2020.02.12 |
---|---|
requirements.txt 생성 (0) | 2019.02.05 |
Ubuntu 설치 시 nouveau 오류, 빈화면 문제 (0) | 2018.10.31 |
우분투에서 폴더 삭제하기 (0) | 2018.07.10 |
ppa 추가 및 제거 (0) | 2018.05.10 |