목록분류 전체보기 (2068)
준호씨의 블로그
확인 sudo systemsetup -getremotelogin $ sudo systemsetup -getremotelogin Password: Remote Login: Off 활성화 sudo systemsetup -setremotelogin on 끄기 sudo systemsetup -setremotelogin off 참고 How to Enable SSH on a Mac from the Command Line 2016.08.16
homebrew 를 설치 하면 각종 유용한 패키지를 손쉽게 설치 할 수 있다. homebrew 설치 하기 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" homebrew 로 wget 설치 하기 $ brew install wget 다른 설치 예apache httpd 설치 하기anaconda 설치 하기php 설치 하기RStudio 설치 하기jenkins 설치 하기dotnet sdk 설치 하기 cleanupcleanup 하기 참고 https://brew.sh/index_ko.html
new IO::Socket::INET... 그냥은 timeout 이 잘 동작 하지 않음 alarm 을 이용해야 한다. 자세한건 차차 정리 참고 alarm IO::Socket::Timeout: socket timeout made easy How to timeout and proceed in perl? IO::Socket::INET
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