cat
: Concatenate FILE(s) to standard output.
ls
: List information about the FILEs
chomd
change mode, 파일의 접근 권한을 변경할 수 있음.
user, group, others 의 read, write, excute 권한을 설정.
이진수를 이용(영어도 가능)
touch
Update the access and modification times of each FILE to the current time.
ln
make links between files
옵션 없으면 하드 링크 연결
groups
명령어 뒤 명시해준 사용자가 속한 그룹을 출력
diff
파일의 차이점이 명시된 패치 파일 생성
diff a b 명령어를 사용하면 a파일에만 있는 문장은 <로, b파일에만 있는 문장을 > 로 표시함
patch -o b a 패치파일
패치파일과 패치 전 파일인 a로 b를 생성하여 비교할 수 있음.
-o 옵션은 output file이름.
find
특정 파일을 탐색하는 명령어
명령어 뒤에 '.' 을 붙이면 현재 디렉터리와 모든 sub디렉터리를 탐색함.
와일드 카드를 이용하여 파일을 탐색할 수 있음.
I wrote some shell commands for the first time in 1 year because of the 42Seoul.
It was HARD ! and endless googling!!!
so i write this to keep to remember all of that i figured out.