목록분류 전체보기 (556)
른록노트
@설명 로컬 환경 변수 현재 세션에서만 동작하는 환경 변수. export TMOUT=0 2가지 방법 test1='hello world' echo $test1 unset test1 (로컬변수 삭제) env -i bash (로컬변수 삭제) export test2='hello world' echo $test2 사용자 환경 변수 특정 사용자의 홈 디렉터리에 존재하는 파일 .bashrc (특정 사용자가 새로운 로컬 세션으로 접근 시도 시) .bash_profile (특정 사용자가 원격 로그인 세션으로 접근 시도시) .bash_login, .profile 시스템 전체 환경 변수 모든 사용자가 사용 할 수 있는 환경 변수 /etc/environment /etc/profile /etc/profile.d/ /etc/ba..
@ 해결방법 시작 시 unbind를 해주면 됌 참고사이트http://projooni.tistory.com/entry/%EC%9D%B4%EB%B2%A4%ED%8A%B8-%EC%A4%91%EB%B3%B5-%EB%B0%94%EC%9D%B8%EB%94%A9-%EB%B0%A9%EC%A7%80
공식사이트https://nodejs.org/ko/docs/guides/event-loop-timers-and-nexttick/
@ 설명- async 모듈이 필요하다 var async = require('async'); //실행시킬 js파일의 경로에 node_modules폴더 안에 집어넣으면됌 ( 찾아보기 todo ) 예제)async.waterfall([ function(callback){ callback(null, '하나', '둘'); }, function(arg1, arg2, callback){ // arg1는 '하나'고, arg2는 '둘'이다. callback(null, '셋'); }, function(arg1, callback){ // arg1은 '셋'이다. callback(null, '끝'); } ], function (err, result) { // result에는 '끝'이 담겨 온다. }); - async.waterf..
참고사이트https://hacks.mozilla.org/2015/06/es6-in-depth-arrow-functions/http://web-front-end.tistory.com/21
참고사이트http://mygumi.tistory.com/229
참고사이트http://webclub.tistory.com/287
@ 옵션 -r, --route 라우팅테이블을 보여준다 -I, --interfaces= 인터페이스 테이블을 보여준다 (Ubuntu에서는 interface를 Iface로 사용)-i, --interfaces 인터페이스 테이블을 보여준다-g, --groups 멀티캐스트 그룹원을 보여준다-s, --statistics 네트워크 상태를 보여준다 (like snmp)-M, --masquerade 가장한 연결을 보여준다 -v, --verbose 천천히 계속해서 보여준다-W, --wide ip주소를 자르지 않는다.-n, --numeric 이름을 풀지 않는다, 호스트명으로 바꿔서 나타내지않고 바로 ip로 나타냄--numeric-hosts 호스트이름을 풀지 않는다--numeric-ports 포트 네임을 풀지 않는다--nume..