App-dropboxapi
view release on metacpan or search on metacpan
- Use lowercase for HTTP_PROXY envvar (mathstuf)
1.09 Jan 8, 2013
- fix "list" and "find" utf8 path bug.
1.08 Jan 8, 2013
- added print option. ( %R ... rev, %c %Ck ... client_mtime )
- fix print option bug.
1.07 Jan 8, 2013
- binmode STDERR, ":utf8"
1.06 Jan 8, 2013
- added -e option, it is "HTTP_PROXY" and "NO_PROXY" environment variable support.
- fix UTF-8-mac filename bug
1.05 Aug 28, 2012
- added ProgressBar. ( need -v option )
1.04 Aug 27, 2012
- large file support. ( over 150 MB )
script/dropbox-api view on Meta::CPAN
our $VERSION = '2.13';
my $limit = 10 * 1024 * 1024; # files_put_chunked method has large file support.
if ($^O eq 'darwin') {
require Encode::UTF8Mac;
$Encode::Locale::ENCODING_LOCALE_FS = 'utf-8-mac';
}
binmode STDOUT, ':utf8';
binmode STDERR, ':utf8';
my $config_file = file( $ENV{DROPBOX_CONF} || ($ENV{HOME} || $ENV{HOMEPATH}, '.dropbox-api-config') );
my $command = shift || '';
my @args;
for (@{ [ @ARGV ] }) {
last if $_ =~ qr{ \A - }xms;
push @args, shift;
}
( run in 0.251 second using v1.01-cache-2.11-cpan-eab888a1d7d )