2017年10月27日 星期五

2017年10月12日 星期四

cmd script 自動產生日期、時間字串,並 copy 到剪貼簿中

要先定義 os.date & os.time 的字串格式

For /f "tokens=1-4 delims=- " %%a in ('date /t') do (set _thisDate=%%a%%b%%c)
For /f "tokens=1-2 delims=/:" %%a in ('time /t') do (set _thisTime=%%a%%b)
set _thisDateTime=%_thisDate%.%_thisTime%

Posted on 10/12/2017 03:12:00 下午 | Categories:

2017年10月5日 星期四

redis monitor

監控 redis 現在被呼叫 (查詢) 的狀況

Posted on 10/05/2017 10:05:00 上午 | Categories:

2017年10月2日 星期一