zip, unzip 자세한 과정
https://aigong.tistory.com/201
# !zip -r 압축하고자 하는 dir path/~.zip 저장하고자 하는 dir path
!zip -r /content/drive/MyDrive/data/name.zip /content/drive/MyDrive/data
# !unzip -qq "zip 파일이 저장된 path/~.zip" -d "저장하고자 하는 dir path"
!unzip -qq "/content/drive/MyDrive/data/name.zip" -d "/content/drive/MyDrive/data"
# !rm -rf 제거하고자 하는 파일 or dir
!rm -rf /content/drive/MyDrive/data
# 현재 파일 경로를 알고싶을 때
!pwd
# !ls 무엇이 있는지 알고자 하는 path
!ls /content/drive/MyDrive/data
(위) 대문자 P (아래) 소문자 p
# !wget -P 저장하고자 하는 Path 다운받고자 하는 URL
!wget -P /content/drive/MyDrive/pretrain https://~
# !wget 다운받고자 하는 URL -p 저장하고자 하는 Path
!wget https://~ -p /content/drive/MyDrive/pretrain
https://stackoverflow.com/questions/55755332/how-to-use-wget-to-download-in-certain-directory
00000