Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Lack of skill dictates economy of style. -- Joey Ramone


devel / comp.unix.shell / find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

SubjectAuthor
* find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sehongy...@gmail.com
+- Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}Janis Papanagnou
+- Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} Spiros Bousbouras
`* Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}Tavis Ormandy
 `* Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} |hongy...@gmail.com
  `* Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}Janis Papanagnou
   `* Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}hongy...@gmail.com
    `- Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}Janis Papanagnou

1
find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4075&group=comp.unix.shell#4075

 copy link   Newsgroups: comp.unix.shell
X-Received: by 2002:ac8:5e08:: with SMTP id h8mr22052105qtx.54.1625898254016; Fri, 09 Jul 2021 23:24:14 -0700 (PDT)
X-Received: by 2002:a37:9d41:: with SMTP id g62mr11735423qke.55.1625898253869; Fri, 09 Jul 2021 23:24:13 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!2.eu.feeder.erje.net!feeder.erje.net!feeder1.feed.usenet.farm!feed.usenet.farm!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.unix.shell
Date: Fri, 9 Jul 2021 23:24:13 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=103.29.70.205; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 103.29.70.205
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
Subject: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash
From: hongyi.z...@gmail.com (hongy...@gmail.com)
Injection-Date: Sat, 10 Jul 2021 06:24:14 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 9
 by: hongy...@gmail.com - Sat, 10 Jul 2021 06:24 UTC

I use the following commands to convert all the SVG files under the current directory and its sub-directories to PDF format:

$ find . -type f -name '*.svg' |
xargs -I{} echo inkscape {} --export-pdf={} |
sed -re 's/svg$/pdf/' | bash

Though it works, but it seems ugly and inefficient when I've so many SVG files to be converted. Any hints/enhancements for the above command?

Regards,
HY

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<scc0io$fsl$1@news-1.m-online.net>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4078&group=comp.unix.shell#4078

 copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!3.eu.feeder.erje.net!feeder.erje.net!news2.arglkargh.de!news.karotte.org!news.space.net!news.m-online.net!.POSTED!not-for-mail
From: janis_pa...@hotmail.com (Janis Papanagnou)
Newsgroups: comp.unix.shell
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}
--export-pdf={} | sed -re 's/svg$/pdf/' | bash
Date: Sat, 10 Jul 2021 13:33:44 +0200
Organization: (posted via) M-net Telekommunikations GmbH
Lines: 44
Message-ID: <scc0io$fsl$1@news-1.m-online.net>
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
NNTP-Posting-Host: 2001:a61:241e:cc01:d82c:c9b2:3d0a:40f7
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Trace: news-1.m-online.net 1625916824 16277 2001:a61:241e:cc01:d82c:c9b2:3d0a:40f7 (10 Jul 2021 11:33:44 GMT)
X-Complaints-To: news@news-1.m-online.net
NNTP-Posting-Date: Sat, 10 Jul 2021 11:33:44 +0000 (UTC)
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
X-Enigmail-Draft-Status: N1110
In-Reply-To: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
 by: Janis Papanagnou - Sat, 10 Jul 2021 11:33 UTC

On 10.07.2021 08:24, hongy...@gmail.com wrote:
> I use the following commands to convert all the SVG files under the
> current directory and its sub-directories to PDF format:
>
> $ find . -type f -name '*.svg' | xargs -I{} echo inkscape {}
> --export-pdf={} | sed -re 's/svg$/pdf/' | bash
>
> Though it works, but it seems ugly and inefficient when I've so many
> SVG files to be converted. Any hints/enhancements for the above
> command?

First hint: A Usenet post should have a meaningful subject that can
be understood, not a sequence of code trash. It's usually simple to
achieve, e.g. "Convert and rename selected files in a file hierarchy"
would be much clearer and that way, for one, you wouldn't waste the
readers' time and, second, your post would get more attention.

You say the code is inefficient. There can be many sources for that;
'find' may traverse a directory tree that is too large ('.'), the used
data processor ('inkscape') may be suboptimal. It may be that your
impression of inefficiency is just because you are converting so many
files.

What shall I say about your code? That it is not robust, that you
will have problems with NL characters in your filenames? That it
might be better to use find's -exec instead of xargs? That you
should use your shell's renaming feature instead of a sed process?
That ImageMagick's 'convert' might be faster (which I don't know,
but you could check) and that it also does the renaming for you?
That you could identify the svg-files in a file hierarchy in some
shells easier by activating recursive globbing (set -o globstar in
ksh, for example)? Or use modern replacements of 'find' ('tw' comes
to my mind)?

If (as I understood) your code works already for your requirements,
just use it. If you want to make the code clearer or faster then
experiment with the suggestions given above or do own experiments
with the Unix toolbox.

Janis

> Regards, HY
>

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<sgykhAVMh1Sib9zGa@bongo-ra.co>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4079&group=comp.unix.shell#4079

 copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!rocksolid2!i2pn.org!aioe.org!Lsq9Ulyii8Zln50ye03obQ.user.gioia.aioe.org.POSTED!not-for-mail
From: spi...@gmail.com (Spiros Bousbouras)
Newsgroups: comp.unix.shell
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash
Date: Sat, 10 Jul 2021 12:21:14 +0000 (UTC)
Organization: Aioe.org NNTP Server
Lines: 14
Message-ID: <sgykhAVMh1Sib9zGa@bongo-ra.co>
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
NNTP-Posting-Host: Lsq9Ulyii8Zln50ye03obQ.user.gioia.aioe.org
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Complaints-To: abuse@aioe.org
X-Server-Commands: nowebcancel
X-Organisation: Weyland-Yutani
X-Notice: Filtered by postfilter v. 0.9.2
 by: Spiros Bousbouras - Sat, 10 Jul 2021 12:21 UTC

On Fri, 9 Jul 2021 23:24:13 -0700 (PDT)
"hongy...@gmail.com" <hongyi.zhao@gmail.com> wrote:
> I use the following commands to convert all the SVG files under the current directory and its sub-directories to PDF format:
>
> $ find . -type f -name '*.svg' |
> xargs -I{} echo inkscape {} --export-pdf={} |
> sed -re 's/svg$/pdf/' | bash
>
> Though it works, but it seems ugly and inefficient when I've so many SVG files
> to be converted. Any hints/enhancements for the above command?

find . -type f |
sed -n -e '/\.svg$/ { s/\(.*\)\(\.svg$\)/inkscape \1\2 --export-pdf=\1.pdf/ ; p }' |
bash

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<iku24mF2s2vU1@mid.individual.net>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4082&group=comp.unix.shell#4082

 copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: tav...@gmail.com (Tavis Ormandy)
Newsgroups: comp.unix.shell
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}
--export-pdf={} | sed -re 's/svg$/pdf/' | bash
Date: 10 Jul 2021 17:02:14 GMT
Lines: 23
Message-ID: <iku24mF2s2vU1@mid.individual.net>
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
X-Trace: individual.net EZ+fUvBg85+nLMC9iQM+GAbnuKTFCjvWXFeSQ0G8Uxwk6esaxz
Cancel-Lock: sha1:R8HcE8n5LM41It41Da5ofuvUlxk=
User-Agent: slrn/1.0.3 (Linux)
 by: Tavis Ormandy - Sat, 10 Jul 2021 17:02 UTC

On 2021-07-10, hongy...@gmail.com wrote:
> I use the following commands to convert all the SVG files under the current directory and its sub-directories to PDF format:
>
> $ find . -type f -name '*.svg' |
> xargs -I{} echo inkscape {} --export-pdf={} |
> sed -re 's/svg$/pdf/' | bash
>
> Though it works, but it seems ugly and inefficient when I've so many SVG files to be converted. Any hints/enhancements for the above command?
>

You could try something like:

$ find . -name '*.svg' -print0 | sed -z 's/\.svg$//g'
| xargs -0 -I{} inkscape {}.svg --export-pdf={}.pdf

(You could try something like xargs -P8 to parallelize the conversion too)

Tavis.

--
_o) $ lynx lock.cmpxchg8b.com
/\\ _o) _o) $ finger taviso@sdf.org
_\_V _( ) _( ) @taviso

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<69793973-7e8e-4cab-9869-142496ad89c2n@googlegroups.com>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4083&group=comp.unix.shell#4083

 copy link   Newsgroups: comp.unix.shell
X-Received: by 2002:ad4:45c6:: with SMTP id v6mr17148305qvt.38.1625960846735; Sat, 10 Jul 2021 16:47:26 -0700 (PDT)
X-Received: by 2002:ad4:4d52:: with SMTP id m18mr538788qvm.11.1625960846592; Sat, 10 Jul 2021 16:47:26 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!tr2.eu1.usenetexpress.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.unix.shell
Date: Sat, 10 Jul 2021 16:47:26 -0700 (PDT)
In-Reply-To: <iku24mF2s2vU1@mid.individual.net>
Injection-Info: google-groups.googlegroups.com; posting-host=211.23.211.37; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 211.23.211.37
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com> <iku24mF2s2vU1@mid.individual.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <69793973-7e8e-4cab-9869-142496ad89c2n@googlegroups.com>
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash
From: hongyi.z...@gmail.com (hongy...@gmail.com)
Injection-Date: Sat, 10 Jul 2021 23:47:26 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 28
 by: hongy...@gmail.com - Sat, 10 Jul 2021 23:47 UTC

On Sunday, July 11, 2021 at 1:02:20 AM UTC+8, Tavis Ormandy wrote:
> On 2021-07-10, hongy...@gmail.com wrote:
> > I use the following commands to convert all the SVG files under the current directory and its sub-directories to PDF format:
> >
> > $ find . -type f -name '*.svg' |
> > xargs -I{} echo inkscape {} --export-pdf={} |
> > sed -re 's/svg$/pdf/' | bash
> >
> > Though it works, but it seems ugly and inefficient when I've so many SVG files to be converted. Any hints/enhancements for the above command?
> >
> You could try something like:
>
> $ find . -name '*.svg' -print0 | sed -z 's/\.svg$//g'
> | xargs -0 -I{} inkscape {}.svg --export-pdf={}.pdf
>
> (You could try something like xargs -P8 to parallelize the conversion too)
>

Thanks a lot for all the help here. See the following testing result based on the above tweaking code:

$ find . -name '*.svg' |wc
83 83 3258
$ time find . -name '*.svg' -print0 | sed -z 's/\.svg$//g' | xargs -0 -I{} inkscape {}.svg --export-pdf={}.pdf

real 0m42.285s
user 0m38.695s
sys 0m6.709s

HY

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<scdiut$u8g$1@news-1.m-online.net>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4085&group=comp.unix.shell#4085

 copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.szaf.org!news.karotte.org!news.space.net!news.m-online.net!.POSTED!not-for-mail
From: janis_pa...@hotmail.com (Janis Papanagnou)
Newsgroups: comp.unix.shell
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}
--export-pdf={} | sed -re 's/svg$/pdf/' | bash
Date: Sun, 11 Jul 2021 03:53:33 +0200
Organization: (posted via) M-net Telekommunikations GmbH
Lines: 45
Message-ID: <scdiut$u8g$1@news-1.m-online.net>
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
<iku24mF2s2vU1@mid.individual.net>
<69793973-7e8e-4cab-9869-142496ad89c2n@googlegroups.com>
NNTP-Posting-Host: 2001:a61:241e:cc01:4048:ff35:82b7:bf20
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Trace: news-1.m-online.net 1625968413 30992 2001:a61:241e:cc01:4048:ff35:82b7:bf20 (11 Jul 2021 01:53:33 GMT)
X-Complaints-To: news@news-1.m-online.net
NNTP-Posting-Date: Sun, 11 Jul 2021 01:53:33 +0000 (UTC)
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
X-Enigmail-Draft-Status: N1110
In-Reply-To: <69793973-7e8e-4cab-9869-142496ad89c2n@googlegroups.com>
 by: Janis Papanagnou - Sun, 11 Jul 2021 01:53 UTC

On 11.07.2021 01:47, hongy...@gmail.com wrote:
>
> See the following testing result based on the above tweaking code:
>
> $ find . -name '*.svg' |wc
> 83 83 3258
> $ time find . -name '*.svg' -print0 | sed -z 's/\.svg$//g' | xargs -0 -I{} inkscape {}.svg --export-pdf={}.pdf
>
> real 0m42.285s
> user 0m38.695s
> sys 0m6.709s

These numbers are quite meaningless without knowing the performance
results of your previous command (or, depending on what we might
want to derive from such numbers, without knowing anything about
the size of your directory structure, or, about your SVG file sizes).

Think about it for a moment and then tell us what these numbers
should tell us.

Ignoring the directory sizes and structure (and assuming no time
necessary for 'find' - which is unrealistic, but anyway) we can say
(for the moment) that 'inkscape' requires about 0.5 sec per file.

Here are some numbers from my system...

$ time inkscape file.svg --export-pdf=file.pdf

real 0m0.22s
user 0m0.18s
sys 0m0.03s

$ time convert file.svg file.pdf

real 0m0.03s
user 0m0.04s
sys 0m0.01s

I suppose there's much more room for performance gains.

Janis

> HY
>

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<0442d334-b55a-4262-91f7-6ece65028af7n@googlegroups.com>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4088&group=comp.unix.shell#4088

 copy link   Newsgroups: comp.unix.shell
X-Received: by 2002:ac8:5c8c:: with SMTP id r12mr41534902qta.265.1625989334260;
Sun, 11 Jul 2021 00:42:14 -0700 (PDT)
X-Received: by 2002:a37:cd0:: with SMTP id 199mr2884833qkm.69.1625989334068;
Sun, 11 Jul 2021 00:42:14 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.unix.shell
Date: Sun, 11 Jul 2021 00:42:13 -0700 (PDT)
In-Reply-To: <scdiut$u8g$1@news-1.m-online.net>
Injection-Info: google-groups.googlegroups.com; posting-host=172.105.220.185; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 172.105.220.185
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
<iku24mF2s2vU1@mid.individual.net> <69793973-7e8e-4cab-9869-142496ad89c2n@googlegroups.com>
<scdiut$u8g$1@news-1.m-online.net>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <0442d334-b55a-4262-91f7-6ece65028af7n@googlegroups.com>
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}
--export-pdf={} | sed -re 's/svg$/pdf/' | bash
From: hongyi.z...@gmail.com (hongy...@gmail.com)
Injection-Date: Sun, 11 Jul 2021 07:42:14 +0000
Content-Type: text/plain; charset="UTF-8"
 by: hongy...@gmail.com - Sun, 11 Jul 2021 07:42 UTC

On Sunday, July 11, 2021 at 9:53:37 AM UTC+8, Janis Papanagnou wrote:
> On 11.07.2021 01:47, hongy...@gmail.com wrote:
> >
> > See the following testing result based on the above tweaking code:
> >
> > $ find . -name '*.svg' |wc
> > 83 83 3258
> > $ time find . -name '*.svg' -print0 | sed -z 's/\.svg$//g' | xargs -0 -I{} inkscape {}.svg --export-pdf={}.pdf
> >
> > real 0m42.285s
> > user 0m38.695s
> > sys 0m6.709s
> These numbers are quite meaningless without knowing the performance
> results of your previous command (or, depending on what we might
> want to derive from such numbers, without knowing anything about
> the size of your directory structure, or, about your SVG file sizes).
>
> Think about it for a moment and then tell us what these numbers
> should tell us.
>
> Ignoring the directory sizes and structure (and assuming no time
> necessary for 'find' - which is unrealistic, but anyway) we can say
> (for the moment) that 'inkscape' requires about 0.5 sec per file.
>
> Here are some numbers from my system...
>
> $ time inkscape file.svg --export-pdf=file.pdf
>
> real 0m0.22s
> user 0m0.18s
> sys 0m0.03s
>
> $ time convert file.svg file.pdf

According to the discussions on <https://superuser.com/questions/381125/how-do-i-convert-an-svg-to-a-pdf-on-linux>, convert will rasterize the vector image, which isn't what I want.

>
> real 0m0.03s
> user 0m0.04s
> sys 0m0.01s
>
> I suppose there's much more room for performance gains.
>
> Janis
>
> > HY
> >

Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {} --export-pdf={} | sed -re 's/svg$/pdf/' | bash

<scejq8$7ng$1@news-1.m-online.net>

 copy mid

https://www.novabbs.com/devel/article-flat.php?id=4090&group=comp.unix.shell#4090

 copy link   Newsgroups: comp.unix.shell
Path: i2pn2.org!i2pn.org!aioe.org!news.mixmin.net!news2.arglkargh.de!news.karotte.org!news.space.net!news.m-online.net!.POSTED!not-for-mail
From: janis_pa...@hotmail.com (Janis Papanagnou)
Newsgroups: comp.unix.shell
Subject: Re: find . -type f -name '*.svg' | xargs -I{} echo inkscape {}
--export-pdf={} | sed -re 's/svg$/pdf/' | bash
Date: Sun, 11 Jul 2021 13:14:16 +0200
Organization: (posted via) M-net Telekommunikations GmbH
Lines: 11
Message-ID: <scejq8$7ng$1@news-1.m-online.net>
References: <219d8b24-61e7-4333-8227-7b874e1a2a7cn@googlegroups.com>
<iku24mF2s2vU1@mid.individual.net>
<69793973-7e8e-4cab-9869-142496ad89c2n@googlegroups.com>
<scdiut$u8g$1@news-1.m-online.net>
<0442d334-b55a-4262-91f7-6ece65028af7n@googlegroups.com>
NNTP-Posting-Host: 2001:a61:241e:cc01:4048:ff35:82b7:bf20
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-Trace: news-1.m-online.net 1626002056 7920 2001:a61:241e:cc01:4048:ff35:82b7:bf20 (11 Jul 2021 11:14:16 GMT)
X-Complaints-To: news@news-1.m-online.net
NNTP-Posting-Date: Sun, 11 Jul 2021 11:14:16 +0000 (UTC)
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
In-Reply-To: <0442d334-b55a-4262-91f7-6ece65028af7n@googlegroups.com>
 by: Janis Papanagnou - Sun, 11 Jul 2021 11:14 UTC

On 11.07.2021 09:42, hongy...@gmail.com wrote:
>
> [...] convert will rasterize the vector image,

This is correct.

> which isn't what I want.

This is new information. Thanks.

Janis

1
server_pubkey.txt

rocksolid light 0.9.7
clearnet tor