Notice
Recent Posts
Recent Comments
목록2017/11 (22)
준호씨의 블로그
perl - Socket 과 Timeout
new IO::Socket::INET... 그냥은 timeout 이 잘 동작 하지 않음 alarm 을 이용해야 한다. 자세한건 차차 정리 참고 alarm IO::Socket::Timeout: socket timeout made easy How to timeout and proceed in perl? IO::Socket::INET
IT이야기
2017. 11. 15. 22:01
perl - print today as yyyymmdd format
use POSIX 'strftime'; my $date = strftime '%Y%m%d', localtime; print $date; result $ perl test.pl 20171115관련글perl - n일 전 날짜 구하기 references http://www.perlmonks.org/?node_id=673547
개발이야기
2017. 11. 15. 21:55
ansible - ssh key 배포
authorized_key 모듈을 이용해서 배포 할 수 있다. 참고 authorized_key - Adds or removes an SSH authorized key
개발이야기
2017. 11. 15. 21:51
vim 에서 특정 범위의 숫자 리스트 만들기
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
개발이야기
2017. 11. 15. 21:49