remove a single period (it was bugging me)
This commit is contained in:
parent
43c8a67e6f
commit
faa2a54a34
|
@ -35,7 +35,7 @@ Usage of e6dl:
|
||||||
--out string
|
--out string
|
||||||
The directory to write the downloaded posts to (default "dl")
|
The directory to write the downloaded posts to (default "dl")
|
||||||
--sfw
|
--sfw
|
||||||
Download posts from e926 instead of e621.
|
Download posts from e926 instead of e621
|
||||||
--tags string
|
--tags string
|
||||||
Tags to search for
|
Tags to search for
|
||||||
```
|
```
|
|
@ -13,7 +13,7 @@ func main() {
|
||||||
maxConcurrents := flag.Int("concurrents", 5, "Maximum amount of concurrent downloads")
|
maxConcurrents := flag.Int("concurrents", 5, "Maximum amount of concurrent downloads")
|
||||||
postLimit := flag.Int("limit", 10, "Maximum amount of posts to grab from e621")
|
postLimit := flag.Int("limit", 10, "Maximum amount of posts to grab from e621")
|
||||||
saveDirectory := flag.String("out", "dl", "The directory to write the downloaded posts to")
|
saveDirectory := flag.String("out", "dl", "The directory to write the downloaded posts to")
|
||||||
sfw := flag.Bool("sfw", false, "Download posts from e926 instead of e621.")
|
sfw := flag.Bool("sfw", false, "Download posts from e926 instead of e621")
|
||||||
|
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue