summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawkgy5Qf4bivpTfYPw_yh92OcDlesrVTREg <Franois@web>2014-01-12 20:36:37 +0000
committerGravatar admin <admin@branchable.com>2014-01-12 20:36:37 +0000
commitda8efe4435576f6938b0f5ec55e87e729ac75613 (patch)
tree465f6bdbbd1845c57f748cd1939eb0ed4fdb8f19 /doc
parented87d70d69694653ccc858b876575bf4648dd484 (diff)
Fix formatting
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/Feature_request:_Multiple_concurrent_transfers.mdwn2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/forum/Feature_request:_Multiple_concurrent_transfers.mdwn b/doc/forum/Feature_request:_Multiple_concurrent_transfers.mdwn
index a287e5ddf..a9d9fb162 100644
--- a/doc/forum/Feature_request:_Multiple_concurrent_transfers.mdwn
+++ b/doc/forum/Feature_request:_Multiple_concurrent_transfers.mdwn
@@ -9,7 +9,7 @@ It would also be nice to have a per remote number of threads. Especially if addi
For now i've made a shell script that i call:
-# for j in `seq -w 0 10`; do echo DOING $j; for i in `curl "http://127.0.0.1:$1/?auth=$2" | grep "continue" | gawk -F\" ' { print $8 } '`; do curl "http://127.0.0.1:$1$i"; sleep 0; done; done
+ # for j in `seq -w 0 10`; do echo DOING $j; for i in `curl "http://127.0.0.1:$1/?auth=$2" | grep "continue" | gawk -F\" ' { print $8 } '`; do curl "http://127.0.0.1:$1$i"; sleep 0; done; done
But it is very rough, and basically just starts all transfers on the page. Which means i currently have 315 active transfers running. whoops.