Mailing List Archive
tlug.jp Mailing List tlug archive tlug Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]Re: [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- Date: Sun, 02 Aug 2009 17:12:14 +0900
- From: "Stephen J. Turnbull" <stephen@example.com>
- Subject: Re: [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- References: <4A7504C9.9070806@example.com> <20090802034303.GA70018@example.com>
Scott Robbins writes: > On Sun, Aug 02, 2009 at 12:15:21PM +0900, Dave M G wrote: > > Uniconvertor, however, takes the file extension of the specified output > > file to determine the output format, and also expects that you tell it > > what to name the new file. So I can't figure out how I would tell it to > > make the output file name be the same name as the old file, but in SVG > > format, and with a .svg extension. > If so, it's pretty simple with some kind of for loop. Something like > for i in *ai;do uniconverter input ${i} output ${i%%ai}svg;done Without more information on uniconverter and the organization of your file collection I can't be more elegant, but I can be more general and correct a typo: for i in `find <your find arguments here>`; do uniconverter input ${i} output ${i%.ai}.svg done This will convert all files named *.ai in the scope of the find to a file in the same directory with the same name.
- Follow-Ups:
- References:
- [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- From: Dave M G
- Re: [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- From: Scott Robbins
Home | Main Index | Thread Index
- Prev by Date: Re: [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- Next by Date: Re: [tlug] [OT] Japan and 海外 credit cards
- Previous by thread: Re: [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- Next by thread: Re: [tlug] Batch conversion of a bunch of Illustrator files to SVG files
- Index(es):
Home Page Mailing List Linux and Japan TLUG Members Links