-
[비공개] 파일 확장자 유형 조회
find . -type f | awk -F'.' '{print $3}' | sort | uniq추천 -
[비공개] [UNIX] Shell 프로그램(Bourne Shell 기준)
1. 쉘 스크립트 실행 및 종료 1) chmod 명령을 이용 실행chmod 명령을 이용하여 쉘 스크립트에 권한을 부여하고 그 명령을 실행$ chmod 755 hello.shell$./hello.shell2) sh 명령을 이용한 방법sh 명령시 인수로 쉘 스크립트 파일을 지정하는 방법이다. 실행 권한이 없는 상태에서도 실행이 된다$sh first.sh3). 쉘 스크립트의 종료쉘은 쉘 스크립트를 차례로 읽어 가면서 실행하다가 쉘 스크립트 파일의 마지막 쉘 스크립트의 실행을 종료한다이때 마지막으로 실행된 명령의 상태 값을 부모 프로세스에게 반환한다. 이때 정상적인 종료이면 0을 비정상 종료일 경우에는 1~255 사이의 값을 반환한다.또한 exit 명령을 이용하여 쉘 스크립트를 종.......추천 -
[비공개] [UNIX] Shell 프로그램(Bourne Shell 기준)
1. 쉘 스크립트 실행 및 종료 1) chmod 명령을 이용 실행chmod 명령을 이용하여 쉘 스크립트에 권한을 부여하고 그 명령을 실행$ chmod 755 hello.shell$./hello.shell2) sh 명령을 이용한 방법sh 명령시 인수로 쉘 스크립트 파일을 지정하는 방법이다. 실행 권한이 없는 상태에서도 실행이 된다$sh first.sh3). 쉘 스크립트의 종료쉘은 쉘 스크립트를 차례로 읽어 가면서 실행하다가 쉘 스크립트 파일의 마지막 쉘 스크립트의 실행을 종료한다이때 마지막으로 실행된 명령의 상태 값을 부모 프로세스에게 반환한다. 이때 정상적인 종료이면 0을 비정상 종료일 경우에는 1~255 사이의 값을 반환한다.또한 exit 명령을 이용하여 쉘 스크립트를 종.......추천 -
[비공개] [UNIX] Shell 프로그램(Bourne Shell 기준)
1. 쉘 스크립트 실행 및 종료 1) chmod 명령을 이용 실행chmod 명령을 이용하여 쉘 스크립트에 권한을 부여하고 그 명령을 실행$ chmod 755 hello.shell$./hello.shell2) sh 명령을 이용한 방법sh 명령시 인수로 쉘 스크립트 파일을 지정하는 방법이다. 실행 권한이 없는 상태에서도 실행이 된다$sh first.sh3). 쉘 스크립트의 종료쉘은 쉘 스크립트를 차례로 읽어 가면서 실행하다가 쉘 스크립트 파일의 마지막 쉘 스크립트의 실행을 종료한다이때 마지막으로 실행된 명령의 상태 값을 부모 프로세스에게 반환한다. 이때 정상적인 종료이면 0을 비정상 종료일 경우에는 1~255 사이의 값을 반환한다.또한 exit 명령을 이용하여 쉘 스크립트를 종.......추천 -
[비공개] unix shell script array(유닉스 쉘 스크립트 배열)
Unix Tip: Using indexed arrays in the Korn shellITworld.com 8/10/2006Sandra Henry-Stocker, ITworld.com Send in your Unix questions today!See additional Unix tips and tricks One of the most convenient ways to manipulate information in scripts is to store it in an array. Arrays facilitate looping through lists of related values, keeping track of an ever changing number of items and relating descriptive text with the items that they describe. As a very simple example, consider the colors of a rainbow. You can always loop through a list of rainbow colors like this: for color in red orange yellow g.......추천 -
[비공개] unix shell script array(유닉스 쉘 스크립트 배열)
Unix Tip: Using indexed arrays in the Korn shellITworld.com 8/10/2006Sandra Henry-Stocker, ITworld.com Send in your Unix questions today!See additional Unix tips and tricks One of the most convenient ways to manipulate information in scripts is to store it in an array. Arrays facilitate looping through lists of related values, keeping track of an ever changing number of items and relating descriptive text with the items that they describe. As a very simple example, consider the colors of a rainbow. You can always loop through a list of rainbow colors like this: for color in red orange yellow g.......추천 -
[비공개] unix shell script array(유닉스 쉘 스크립트 배열)
Unix Tip: Using indexed arrays in the Korn shellITworld.com 8/10/2006Sandra Henry-Stocker, ITworld.com Send in your Unix questions today!See additional Unix tips and tricks One of the most convenient ways to manipulate information in scripts is to store it in an array. Arrays facilitate looping through lists of related values, keeping track of an ever changing number of items and relating descriptive text with the items that they describe. As a very simple example, consider the colors of a rainbow. You can always loop through a list of rainbow colors like this: for color in red orange yellow g.......추천 -
[비공개] Hypertext Transfer Protocol (HTTP)
http://www.rhyshaden.com/http.htm Introduction Hypertext Transfer Protocol (HTTP) was invented by a group of individuals, amongst whom most famously was Tim Berners-Lee. The original HTTP 0.9 was superceded by HTTP 1.0. HTTP 1.0 is described in RFC 1945 as "...an application-level protocol with the lightness and speed necessary for distributed, collaborative, hypermedia information systems". HTTP can be used for many things, to deliver files, query results, CGI script output etc. as well as act as a gateway for access to other Internet protocols such as SMTP, NNTP, FTP, Gopher, and WAIS. For r.......추천 -
[비공개] Hypertext Transfer Protocol (HTTP)
http://www.rhyshaden.com/http.htm Introduction Hypertext Transfer Protocol (HTTP) was invented by a group of individuals, amongst whom most famously was Tim Berners-Lee. The original HTTP 0.9 was superceded by HTTP 1.0. HTTP 1.0 is described in RFC 1945 as "...an application-level protocol with the lightness and speed necessary for distributed, collaborative, hypermedia information systems". HTTP can be used for many things, to deliver files, query results, CGI script output etc. as well as act as a gateway for access to other Internet protocols such as SMTP, NNTP, FTP, Gopher, and WAIS. For r.......추천 -
[비공개] Hypertext Transfer Protocol (HTTP)
http://www.rhyshaden.com/http.htm Introduction Hypertext Transfer Protocol (HTTP) was invented by a group of individuals, amongst whom most famously was Tim Berners-Lee. The original HTTP 0.9 was superceded by HTTP 1.0. HTTP 1.0 is described in RFC 1945 as "...an application-level protocol with the lightness and speed necessary for distributed, collaborative, hypermedia information systems". HTTP can be used for many things, to deliver files, query results, CGI script output etc. as well as act as a gateway for access to other Internet protocols such as SMTP, NNTP, FTP, Gopher, and WAIS. For r.......추천