> Abel:
>
>
> There are lots of Bash tutorials on the web which are interesting
> (bash is the default shell program that you use in the terminal), but
> the best thing is experience. I'd suggest playing around with some
> very unixy programs that can be piped together and operate via the
> command line, for example the netpbm suite of image manipulation
> tools... e.g, a small script I wrote which extracts a preset area from
> a screenshot, scales it to the ratio provided as a parameter,
> quantises it down to 512 colours or less, then after converting it to
> a PNG, compresses it with two different programs (which actually works
> in this case :D):
> ;;;;
> bmptopnm $1.bmp | pamcut -left 96 -top 58 -width 640 -height 400 |
> pamscale -verbose -nomix $2 | pnmquant 512 | pnmtopng > $1.png
> optipng -o7 $1.png
> advpng -z -4 $1.png
> ;;;;
>
> The pipe | operator between two commands means "take the output of the
> first program and pass it to the second as input", like "strings
> `which ls`|sort|more" will list all the textual strings in the ls
> program, sort them alphabetically and page them onscreen.
> So... really the best thing is to pick a task that's extremely tedious
> to do from the Finder, but possible with simple shell commands, and
> incrementally muddle through it.
>
> Best of luck,
> Oisín

Again, thank you very much - I'm quite blown away at how supportive
this community is; very motivating. I will have to see what a "bash
tutorial" search turns up because beyond "ls" & "cd" I don't know all
that much (& those man pages can be something horrible to decipher!).

I'll have to find a way to incorporate this exploration with my
studies, because there is not all that much spare time for learning
'on the side' as it were (!).

Warm regards to you all & my sincere thanks.

- Abel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"mnemosyne-proj-users" group.
To post to this group, send email to mnemosyne-proj-users@googlegroups.com
To unsubscribe from this group, send email to 
mnemosyne-proj-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/mnemosyne-proj-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to