corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 :: batch file highlighting in Ace!
2 @echo off
3  
4 CALL set var1=%cd%
5 echo unhide everything in %var1%!
6  
7 :: FOR loop in bat is super strange!
8 FOR /f "tokens=*" %%G IN ('dir /A:D /b') DO (
9 echo %var1%%%G
10 attrib -r -a -h -s "%var1%%%G" /D /S
11 )
12  
13 pause
14  
15 REM that's all