출처 : http://javascript.crockford.com/prototypal.html Object.prototype.begetObject = function () { function F() {} F.prototype = this; return new F(); }; newObject = oldObject.begetObject(); if (typeof Object.create !== 'function') { Object.create = function (o) { function F() {} F.prototype = o; return new F(); }; } newObject = Object.create(oldObject);
1) Our Goal 2) Defining Functions 3) Named Functions 4) Functions as Objects 5) Context 6) Instantiation 7) Flexible Arguments 8) Closures 9) Temporary Scope 10) Function Prototypes 11) Instance Type 12) Inheritance 13) Built-in Prototypes 14) Enforcing Function Context
ls - =dir/w ls -la = dir /a ex) ls -la | grep php | grep 으로... php 자가 들어간 것 정렬 ls -la | grep php | | 다음에 명령 실행 | 다음 명령 실행 ps -aux 데몬 이나 서버에서 띄워져 있는 것들을 모두 알 수 있따. -a 전체보기 -u 유저보기 합쳐서 -aux 다 보임 가장 좋음 -_-;; top - CPU 점유율 알아보는 것.. vi - VI 텍스트 에디터 i - 인서트 모드 d - 한줄 지우기 ~$ + 맨 뒷줄 (end) esc - 해제 : 파일이 사용된 용도 head -n 100 파일 이름 처음부터 100줄까지의 정보 tail -n 100 파일 이름 제일 마지막부터 100줄까지의 정보 mail 메일 보기 q로 나오기 mail..
#압축 하기tar cvzpf abc.tgz /home #압축 풀기tar -xzvf abc.tgz
(っ'∇')づ 『 Have A Good Time ! 』(っ'∇')づ | 쉼쉼이 http://blog.naver.com/darkstorm001/40019323093[팁] find + xargs + ls 명령어 몇가지 활용작성자 : 김칠봉 작성일 : 2001.03.12목차 1. 가장 일반적인 find 명령어2. find 명령어 일반적인 옵션 2-1. 사용법 개요 2-2. 일반적으로 표현식 옵션 구분 3-3. 자주 사용되는 표현식 옵션 3-4. path(find 명령어 다음의 path) 3-5. 표현식-연산자3. 예제 3-1. 다른 명령어와 결합형태(ls,xargs) 3-2. 퍼미션 관련 예제 3-3. 유저와 관련된 예제 3-4. 팁 - 최근 하루(1) 동안(-)에 변경(change)된 파일을 찾을려면(-ct..