Re: batch automation

2009-08-02 Thread Ron Johnson
On 2009-08-03 01:25, jeremy jozwik wrote: On Sun, Aug 2, 2009 at 11:20 PM, Ron Johnson wrote: Sure. For example, let's say that you've got a list of raw files that you want to convert to jpeg and then make thumbnails from. #!/bin/bash cd /photo/raw for i in *.raw; do bn=$(basename "${i}" .ra

Re: batch automation

2009-08-02 Thread jeremy jozwik
On Sun, Aug 2, 2009 at 11:20 PM, Ron Johnson wrote: > Sure.  For example, let's say that you've got a list of raw files that you > want to convert to jpeg and then make thumbnails from. > > #!/bin/bash > cd /photo/raw > for i in *.raw; > do >   bn=$(basename "${i}" .raw) >   convert_to_jpg "${i}" /

Re: batch automation

2009-08-02 Thread Ron Johnson
On 2009-08-03 01:08, jeremy jozwik wrote: On Sun, Aug 2, 2009 at 11:00 PM, Ron Johnson wrote: My bad for adding the continuation characters. This definitely works: alright, it no longer errors out. will this be able to bridge across the /photo/raw, /photo/fresh folders? Sure. For example,

Re: batch automation

2009-08-02 Thread jeremy jozwik
On Sun, Aug 2, 2009 at 11:00 PM, Ron Johnson wrote: > My bad for adding the continuation characters.  This definitely works: alright, it no longer errors out. will this be able to bridge across the /photo/raw, /photo/fresh folders? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org

Re: batch automation

2009-08-02 Thread Ron Johnson
On 2009-08-02 23:36, jeremy jozwik wrote: On Tue, Jul 28, 2009 at 7:53 AM, Ron Johnson wrote: for i in *.jpg; \ do \ bn=$(basename "${i}" .jpg) \ echo "${bn}" \ done Replace the echo statement with appropriate exiftool command. ./exif.sh: line 7: syntax error: unexpected end of file ok, i

Re: batch automation

2009-08-02 Thread jeremy jozwik
On Tue, Jul 28, 2009 at 7:53 AM, Ron Johnson wrote: >>> for i in *.jpg; \ >>> do \ >>>   bn=$(basename "${i}" .jpg) \ >>>   echo "${bn}" \ >>> done >>> >>> Replace the echo statement with appropriate exiftool command. ./exif.sh: line 7: syntax error: unexpected end of file ok, im getting frustrate

Re: batch automation

2009-07-27 Thread Ron Johnson
On 2009-07-27 22:41, jeremy jozwik wrote: sorry if this is not within the scope of the debian user list. but im stuck in a rut. im running exiftool to copy exif data from my jpg files to my converted raw files. individually i am running ./exiftool -TagsFromFile jpg.jpg raw.jpg Why are you in /

batch automation

2009-07-27 Thread jeremy jozwik
sorry if this is not within the scope of the debian user list. but im stuck in a rut. im running exiftool to copy exif data from my jpg files to my converted raw files. individually i am running ./exiftool -TagsFromFile jpg.jpg raw.jpg but i have a folder loaded with .jpg files and this could tak