mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 00:43:49 +01:00
43 lines
985 B
Bash
Executable File
43 lines
985 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
#
|
|
# example usage:
|
|
# $GOPATH/src/github.com/ncw/rclone/cmd/info/test.sh --list | \
|
|
# parallel -P20 $GOPATH/src/github.com/ncw/rclone/cmd/info/test.sh
|
|
|
|
export PATH=$GOPATH/src/github.com/ncw/rclone:$PATH
|
|
|
|
typeset -A allRemotes
|
|
allRemotes=(
|
|
TestAmazonCloudDrive '--low-level-retries=2 --checkers=5'
|
|
TestB2 ''
|
|
TestBox ''
|
|
TestDrive '--tpslimit=5'
|
|
TestCrypt ''
|
|
TestDropbox '--checkers=1'
|
|
TestJottacloud ''
|
|
TestMega ''
|
|
TestOneDrive ''
|
|
TestOpenDrive '--low-level-retries=2 --checkers=5'
|
|
TestPcloud '--low-level-retries=2 --timeout=15s'
|
|
TestS3 ''
|
|
Local ''
|
|
)
|
|
|
|
set -euo pipefail
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
set -- ${(k)allRemotes[@]}
|
|
elif [[ $1 = --list ]]; then
|
|
printf '%s\n' ${(k)allRemotes[@]}
|
|
exit 0
|
|
fi
|
|
|
|
for remote; do
|
|
dir=$remote:infotest
|
|
if [[ $remote = Local ]]; then
|
|
dir=infotest
|
|
fi
|
|
rclone purge $dir || :
|
|
rclone info -vv $dir ${=allRemotes[$remote]} &> info-$remote.log
|
|
rclone ls -vv $dir &> info-$remote.list
|
|
done |