Skip to content

Instantly share code, notes, and snippets.

@DonghoonPark12
Created June 28, 2018 10:11
Show Gist options
  • Save DonghoonPark12/543db64de09f87d4dbc6faa6170a8e9d to your computer and use it in GitHub Desktop.
Save DonghoonPark12/543db64de09f87d4dbc6faa6170a8e9d to your computer and use it in GitHub Desktop.
★Shell order
find -name '*.pl' : 현재 디렉토리에서 pl 확장자를 가진 모든 파일 찾기
find / -name '*.pl' -ls : 루트에서 부터 pl 확장자를 가진 모든 파일 찾기, ls명령으로 출력
find /medie -name 'et*' -type d : media에서 부터 이름이 et로 시작하는 모든 디렉토리 찾기
mkdir -p dir1/dir2 dir1/dir3 : 여러개의 디렉토리 생성가능
tree dir1 -> dir1/ : tree 명령어로 디텍토리, 파일구조를 볼 수 있다.
|----dir2
|----dir3
# https://opentutorials.org/module/2538/14203
# https://opentutorials.org/module/2538/14204
# https://opentutorials.org/module/2538/14205
# https://opentutorials.org/module/2538/14210
# https://opentutorials.org/module/2538/14212
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment