-
as seen on Super User
- Search for 'Super User'
I have to convert DPI of more than 5k Tiff images on a monthly basis from 200x200 to 100x100. I can do that in Irfan view using a .bat file that i have created.. the following is the .BAT file code
@"c:\program files\irfanview\i_view32.exe"
"e:\batch1*.tif /aspectratio
/resample /tifc=4 /dpi=(100…
>>> More
-
as seen on Super User
- Search for 'Super User'
Hi,
I used to rename file in Linux via a rename command:
rename 's/old_pattern/new_pattern/g' *glob
Is there something similar in Mac OSX (snow leopard)? Thanks
>>> More
-
as seen on Super User
- Search for 'Super User'
I'm looking for a slightly different kind of sync utility - not one designed to keep two directories identical, but rather one intended to keep files flowing from one host to another.
The context is a data warehouse that currently has a custom-developed solution that moves 10,000 files a day, some…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
What tools, languages, and infrastructure do you use for do batch processing in Linux?
I am looking for something that facilitate the tasks of:
Process files
Log
Validation
Job Controlling (start,strop,reestart a process)
Mysql Connection
Thanks for any help!
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In python, you might do something like
fout = open('out','w')
fin = open('in')
for line in fin:
fout.write(process(line)+"\n")
fin.close()
fout.close()
(I think it would be similar in many other languages as well).
In emacs lisp, would you do something like
(find-file 'out')
(setq fout (current-buffer)
(find-file…
>>> More