Skip to content
Snippets Groups Projects
Commit bf859f12 authored by 영일 곽's avatar 영일 곽
Browse files

10-12 Readme.md

parent 8ebba70b
No related branches found
No related tags found
No related merge requests found
bash - A=900 - exit - echo $A 를 하면 900이 나오는 것이 아닌 탈출해서 나온 쉘의 A값 출력
Glbing : 와일드카드를써서 파일을 선택하는 것
ls -a, ls *, ls -a * 차이를 알 것
shopt -s dotglob 를 사용하면 .이 붙은 파일 이름도 출력
ls -l ** - 모든 디렉토리를 다 찾는다.. (shopt에서 켜줘야함)
Transform String : 명령어를 바꾸는 명령? ( 대문자 → 소문자 )
sed( string editor ) : set number
echo {A..z} 안되는 이유 : 중간에 빠진 철자?
→ echo {{A..Z}{a-z}}
Parameter expansion (중간고사)
뒤에있는 문자로부터 일정 개수만큼 출력하고 싶을 때
1. echo ${A:(-4):4}
2. echo ${A: -4:4} (띄어쓰기)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment