- Today
- Total
Phantom
어나니머스는 우리민족끼리 해킹 http://itviewpoint.com/258112 과 북한 정부 공식사이트 해킹http://itviewpoint.com/259964 에 이어, 16일 추가 두 개 사이트도 해킹해, 일부 회원정보를 공개했다. http://twitter.com/Anonsj/status/324110428177305600http://twitter.com/Anonsj/status/324112198060371968 Anonymous@Anonsj http://minjok.com 과 http://paekdu-hanna.com 회원의 자세한 일부리스트 입니다. id,닉네임,비밀번호, IP,주민번호, 이메일 등입니다. 자료는 아래에서 볼 수 있다. http://pastebin.com/dTjZT5Jvht..
정규식과 관련된 기본적인 메타케릭터 설명이다. Egrep을 기준으로 작성된거지만 대부분의 표준 정규식에서 지원된다. MetachracterMatches.dotMatches any one character[…]character classMatches any one character listed[^…]negated character classMatches any one character not listed\charescape characterWhen char is a metacharacter,or the escaped combination is not otherwise special, matches the literal character Items Appended to Provide "Counting" :T..
음.....이것도 제가 몇일 전에 질문 을 했던 문제인데요리눅스 파이프를 다시 공부하던 참에 문득 떠오른게 왜 세미콜론이 있는데 파이프를 쓰는거지? 왜 파이프를 더많이 쓰지? "두 개의 차이점이 뭐지?"입니다. 일단 세미콜론(;)은 명령어를 한번에 여러 개 입력 할 수 있도록 해주지요.그리고 파이프(|)역시 명령어를 여러개 입력 할 수 있게 해주지요. 이제 차이점!!!예를 들어 A;B;C라고 입력햇을때세미콜론은 A가 끝난 후에 B를 실행하고 B가 끝난 후에 C가 실행 됩니다. 그러나 파이프는 A에서의 결과를 B로 연결해줍니다. 그리고 B의 결과를 C에또 보내줍니다. ls -al ; grep asd.txt이것은 앞의 명령어를 실행하고 입력모드로들어가버리는 기이한현상(?)....제가 잘모르겟어요 왜그런지 ㅠ..