網頁

2013/10/10

Some Quotes

“You do not really understand something unless you can explain it to your grandmother.”
― Albert Einstein
如果你能把一個東西解釋到讓你阿嬤明白,才算真正瞭解那個東西。
─愛因斯坦

Blogger的Syntaxhighlighter設定

每次重新調整Blogger總會忘記把Syntaxhighlighter的設定先備份,下場就是花一堆時間重新設定。所以就memo一下吧!

2013/08/20

[Batch] 取得相對目錄清單

setlocal EnableDelayedExpansion
for /L %%n in (1 1 500) do if "!__cd__:~%%n,1!" neq "" set /a "len=%%n+1"
setlocal DisableDelayedExpansion
for /r . %%g in (*.log) do (
  set "absPath=%%g"
  setlocal EnableDelayedExpansion
  set "relPath=!absPath:~%len%!"
  echo(!relPath!
  endlocal
)