Browse by Tags
All Tags »
scripting (RSS)
Sorry, but there are no more tags available to filter with.
If you've never used the 'for' command in windows, it is your friend. It longs for you to use it! It is 'Da Bizzle' as the kids say. Here's a silly little example of using it to delete all of the temporary internet files from all...
if you have a "burning" need, as some do, to view the change log for a bunch of files in svn, here's a quick way in windows to do it. just save the following as showsvnlog.cmd or whatever cmd or bat you want in your sendto folder and highlight whatever...
@echo off set a=1 ping -n 1 %1 | find /c "bytes=32" > nul if %errorlevel% == 1 set a=0 echo %1 %a% set a= (via don't feed the penguins ) *edit* this is a very simple shell script that i used to use for ping checks. i found that it even outperformed...