목록Linux (34)
준호씨의 블로그
pkill -f my_pattern ps -ef | grep myProcessName | grep -v grep | awk '{print $2}' | xargs kill -9 참고 https://stackoverflow.com/questions/8987037/how-to-kill-all-processes-with-a-given-partial-name
You can see stderr "No such file or directory" when you 'cat' none exists file $ cat nonexistent_file cat: nonexistent_file: No such file or directory If you want to hide stderr, attach 2>/dev/null after command cat nonexistent_file 2>/dev/null Tip 'grep' command has '-s' option to hide error message about nonexistent or unreadable files. -s, --no-messages Suppress error messages about nonexiste..
다음과 같은 list라는 파일이 있습니다. 1 2 3 cat 명령어를 이용하면 파일의 내용이 순서대로 출력됩니다. $ cat list 1 2 3 만약 역순으로 보이도록 하고 싶다면 tac 명령어를 사용하면 됩니다. $ tac list 3 2 1 linux에서는 기본 지원하는 명령어이고 osx에서도 coreutils를 설치하면 사용할 수 있습니다.
june101 june102 june103 ... june200 :for i in range(101,200) | put = 'june'.i | endfor 관련글 ssh known_hosts 등록. 처음 접속하는 호스트 yes/no 이슈 해결 http://junho85.pe.kr/667 참고 http://vim.wikia.com/wiki/Making_a_list_of_numbers