Ubuntu One的命令行工具练下手,现在基本上可以使用了,有很多地方没有优化处理,大家可以自己修改下,源码在ubuntuone_uploader,下面说说用法。
参看子命令
详细用法说明参看ubuntuone_uploader,Ubuntu One中的文件共享后可以直链访问(类似早期注册的Dropbox用户的public文件夹),有需要的可以使用我的推荐链接注册,我可以得到500M空间,邀请链接是Ubuntu One和Dropbox
https://github.com/likebeta/ubuntuone_uploader
安装
脚本依赖oauth2
, ubuntu 下可以 sudo apt-get install python-oauth2
安装。git clone https://github.com/likebeta/ubuntuone_uploader.git
cd ubuntuone_uploader
chmod +x ubuntuone_uploader.py
帮助
使用-h
查看命令参数:king@ubuntu:~/ubuntuone_uploader$ ./ubuntuone_uploader.py -h
usage: ubuntuone_uploader.py [-h] [-v]
{auth,quota,list,download,upload,delete,mkdir,move,copy,share}
...
It is a command-line tool to operate ubuntu one
optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit
sub-commands:
{auth,quota,list,download,upload,delete,mkdir,move,copy,share}
auth authorize to access your account
quota quota info
list list file of the directory
download download file from ubuntu one and output to screen
upload upload file to ubuntu one
delete delete file from ubuntu one
mkdir create directory
move move file
copy copy file
share share or cancel share file,list share file
upload
使用方法:king@ubuntu:~/ubuntuone_uploader$ ./ubuntuone_uploader.py upload -h
usage: ubuntuone_uploader.py upload [-h] [-r remote_path] local_path
positional arguments:
local_path which to upload
optional arguments:
-h, --help show this help message and exit
-r remote_path where to save
https://github.com/likebeta/ubuntuone_uploader