본문 바로가기

Develop

(152)
PowerShell 기본문법 기본명령형식 : cmdlet(command-let)정규식 표현, 파이프 연결가능 명령어의 도움말 : Get-Help 명령어 // o : -full = 도움말 전체 스크립트실행 보안해제 PS > Set-ExecutionPolicy RemoteSignedPS > Set-ExecutionPolicy Unrestricted // 공유폴더에 위치한 서명안된 스크립트 실행 변수지정PS > $변수명 = 내용PS > [변수타입]$변수명 = 내용 // 변수타입 지정 : xml, int, char, string ...변수명은 영문 및 한글, 숫자로만 된 이름도 가능 배열사용@으로 배열을 표현. 변수에 저장해야 함. 참조는[참조]형식PS > $ar = @(1,1,1,1,)PS >echo $ar[0] PS > $ar = @(..
참고 예제 링크 특정파일들을 여러 폴더에 복사하는 PowerShell Script http://simmanix.tistory.com/39 배치 파일(Batch File), 주석문/주석 처리 방법; 코멘트,설명 문 달기; Comment http://mwultong.blogspot.com/2006/07/batch-file-comment.html 파워쉘 실용예제 http://blog.naver.com/h2d2002/220488184488 about_If https://technet.microsoft.com/ko-kr/library/dd315286.aspx Powershell 에서의 정규 표현식 (Regular Expressions) https://talsu.net/?p=1016 Powershell로 텍스트 치환하기 http:..
AEM 6 SP2 - View (Tail) CQ Log Files http://experience-aem.blogspot.kr/2015/03/aem-6-sp2-view-tail-cq-log-files.html AEM 6 SP2 - View (Tail) CQ Log FilesGoal Quick post on creating a Tail Log servlet for examining the logs on remote CQ instances; if you are debugging issues on a friend's CQ instance or QA, deploying this servlet could be helpful. Ootb, logs can be viewed by logging into felix console (http://localhost:4502/system/c..
isNumeric - 문자인지 숫자인지 구분 문자인지 숫자인지 구분 public static boolean isNumeric(String str) { try { double d = Double.parseDouble(str); } catch(NumberFormatException nfe) { return false; } return true; }
DAM File Upload API Uploading files to Adobe Experience Manager DAM using AssetManager API https://helpx.adobe.com/experience-manager/using/uploading-files-aem1.html
어도비 깃허브 http://adobe-marketing-cloud.github.io/#projects
FOP 와 아랍어(Arabic) https://xmlgraphics.apache.org/fop/2.1/configuration.html The Apache™ FOP Project html을 PDF로 변환 아랍어 지원관련http://xmlgraphics.apache.org/fop/2.1/complexscripts.html#fonts_arabic true true ./ ./ 72 72 flate
정규식표현 http://lng1982.tistory.com/141 http://blog.bagesoft.com/178