Developer Tools – Bulk Rename Utility
This is such a helpful tool, ever had a file full of folders and you need to rename them all? Don’t want to manually do it, or quickly program something to take care of it.
Bulk Rename Utility is you’re answer; http://www.bulkrenameutility.co.uk/Main_Intro.php
I’ll post some great examples soon
Developer Tools – Launchy
Okay, so Raymond Camden pointed out this great application launcher on a recent blog post. It works on both Windows & Linux, and it works off you’re keystrokes. Makes it really easy to launch programs very fast, design to elimnate the use of Start Menu/Quick Launch & Desktop – over time I think it will!
Check it out here: http://www.launchy.net/
Error Output & Standard Output
Great little utility when using batch files.
http://systemcommand.riaforge.org/
Usage:
<cfset objSysCmd = createObject(“java”,“au.com.webcode.util.SystemCommand”).init() />
<cfset rs= objSysCmd.execute(“java -version”) />
<cfoutput>
Error Output: #result.getErrorOutput()#<br />
Standard Output: #result.getStandardOutput()#<br />
</cfoutput>
