Gdrive使用教程【linux备份至google drive】
Gdrive使用教程,linux备份至google drive,linux和google drive。google drive使用了oauth2.0验证协议,所以比较复杂,获取到code(token)以后才能进行正常操作,教程记录。
安装gdrive
1 2 |
wget -O /usr/bin/gdrive "//docs.google.com/uc?id=0B3X9GlR6EmbnQ0FtZmJJUXEyRTA&export=download" chmod +x /usr/bin/gdrive |
授权
1 |
gdrive about |
然后会出现一串网址并询问验证码
将地址粘贴到浏览器并登陆账号,会返回一串代码
将代码粘贴到SSH下,然后会返回你的账户信息
gdrive程序会自动将你的token保存在用户目录下的.gdrive目录中,所以如果不需要了记得把这个文件删掉
Gdrive常用命令
1 2 3 4 5 6 7 8 9 10 |
# 1、列出Google Drive根目录下文件、文件夹 gdrive list # 2、下载Google Drive根目录下文件到本地(xxxx为文件名) gdrive download xxxx # 3、下载Google Drive根目录下文件夹到本地(xxx为文件夹名) gdrive download xxx # 4、把本地文件上传到Google Drive根目录下(xxxx为文件名) gdrive upload xxxx # 5、在Google Drive根目录下创建文件夹(xxx为文件夹名) gdrive mkdir xxx |
参考:https://zhujiwiki.com/11147.html
Copyright:cpp.cloudcpp.com Share、Open- C/C++程序员之家