Created
June 28, 2018 10:11
-
-
Save DonghoonPark12/543db64de09f87d4dbc6faa6170a8e9d to your computer and use it in GitHub Desktop.
★Shell order
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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