태그 : unix 요약보기전체보기목록닫기

1

WireShark 에서 인터페이스를 검색하지 못할때.

On BSD-flavored systems, such as OS X, libpcap opens a BPF device to doa capture. You'd need to make the BPF devices on your system readable by you in order to capture (you could also run Wires...

아웅 귀찮아 .svn삭제하기 with Shell Command

find . -type d -name .svn -print0 | xargs -0 rm -rf 다른건 다 알겠다. xargs -0 가 뭐하는 놈인지를 모르겠다. 그래, 이런 시점에서 필요한건 man(ual)... 검색해봤다. 흠흠, 간단하게는 stdi(standard input)으로 넘어온 데이터를 space ' ', tab '\t', ne...
1