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

1

Find file in command window. (in Windows)

If U want to find a (or more) file in Command.exe window.dir *ABitOfStringWhatUWant2Find* /sPS. Thanks to ComputerHope.com

아웅 귀찮아 .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...

OS X 호스트네임 변경 Howto

sudo scutil --set HostName servername.example.com
1