On 13:33:40 Aug 30, Bharathi Subramanian wrote: > > convert '*.jpg' -resize 120x120 thumbnail%03d.png > > Here, what is the meaning of "%03d"?? > > It is very similar to %d of printf. It will generate sequence of > number for each image. >
Read up on printf(3) formats. %03d indicates that instead of writing thumbnail1.png it will write thumbnail001.png. -Girish _______________________________________________ To unsubscribe, email [EMAIL PROTECTED] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
