2018년 11월 29일 목요일

Qiitaに投稿 https://qiita.com/STONEBKIMTAEHO/items/2141b1c7ed5d149dfd9e

https://qiita.com/STONEBKIMTAEHO/items/2141b1c7ed5d149df...

2018년 11월 12일 월요일

Android Aspectj 로 로그 정성껏 출력해보기.. 머래...

import android.content.ContentValues; import android.content.Context; import android.graphics.Bitmap; import android.os.Debug; import android.os.Environment; import android.support.annotation.NonNull; import android.util.Log; import android.view.View; import com.afwsamples.testdpc.Application; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import...

2018년 11월 11일 일요일

powershell 에서 문자열 찾기

(get-content "C:\w\test.txt - 리스트파일") | foreach-object { get-childitem 폴더 -recurse -include *.* | select-string -pattern "$_"; echo "WORD : $_"; } > result.txt 파일에서 매치되는 것만 모아서 카운트세기 (get-content "C:\w\test3000.txt") | foreach-object { $mesure = (get-childitem JP-Subtitles -recurse -include *.* | select-string -pattern "$_" -AllMatches);  $mesureCount=$mesure.Matches.Count; echo "WORD : $_ ...