posted by 빠담아빠다 2016. 3. 6. 01:32

DB쿼리시


like는 or로



not like는 and로

posted by 빠담아빠다 2016. 3. 6. 01:20
2015/01/13 14:25 이전자료


[root@devdb cron]# date -d '1 day ago' +%Y%m%d%H%M
201501121420



  1. date -d 'yesterday' # 어제
  2. date -d '1 day ago' # 1일전 = 어제
  3. date -d '2 day ago' # 2일전
  4. date -d '35 day ago' # 20일전
  5. date -d '1 week ago' # 1주일전
  6. date -d '2 month ago' # 1달전
  7. date -d '3 year ago' # 3년전
  8. date -d '10 second ago' # 10초전
  9. date -d '20 minute ago' # 20분전
  10. date -d '30 hour ago' # 30시간전
  11. date -d '3 year 7 month ago' # 3년 7개월전



퍼옴 

http://steadypost.net/post/qna/id/8/

posted by 빠담아빠다 2016. 3. 6. 01:18

2014/11/10 09/59 이전자료


perl compiler PAR PACKER

cpan에 간다.

par packer 검색해서

간단한 파일만 받는다.

PAR-Packer-1.014.tar.gz


tar.gz 풀고

Perl Makefile.PL

make

make test

make install


하고

pp -o a.exe a.pl

해보면

Module/ScanDeps가 필요하단다


cpan에간다

Module scandeps검색


Module-ScanDeps-1.10.tar.gz


받고 tar.gz 푼뒤

Perl Makefile.PL

make

make test

make install


하고

pp -o a.exe a.pl

하면 a.exe 파일이 생긴다.


perl compile

pp -o a.exe a.pl


a.pl이라는 파일을 a.exe로  컴파일 ..





----------------------------------------------------------

방문자 덧글

  1. perler 2014.11.11 10:53  댓글주소 수정/삭제 댓글쓰기

    tar ball 받아서 풀고 할필요없이
    명령행에서 cpan 명령써서
    cpan PAR::Packer
    라고 입력하면 의존성있는 모듈 다 알아서 깔아줍니다.