일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Sysinternals
- Windows10
- aws
- deployment
- RTMP
- macos
- Android
- android studio
- wireshark
- namespace
- docker
- VSCode
- service
- ffmpeg
- golang
- Java
- kubectl
- Kubernetes
- Pod
- Python
- configmap
- ebpf
- Shell script
- nginx-media-server
- Flutter
- 행정구역분류
- HLS
- aws cli
- dart
- spring cloud config
- Today
- Total
목록Shell (2)
woonizzooni
MacOS나 Linux에서 친숙한(?) bash, zsh등에서 보통 아래와 같이 사용했는데.. (파일명 : a.sh) #!/bin/sh declare -i count=1 a=(abc 123 def) b=(ghi 456 kkk) echo ">>> print a" for item in ${a[@]} do printf " %d:%s\n" $count $item count+=1 done count=1 c=(${a[@]} ${b[@]}) echo ">>> print all" for item in "${c[@]}" do printf " %d:%s\n" $count $item count+=1 done 실행결과 >>> print a 1:abc 2:123 3:def >>> print all 1:abc 2:123 3:de..
bashrc inputrc 등등에서 rc의 의미는? rc파일이 뭔지 찾아보면 리소스 파일이다 뭐다 이런것만 나오는데 이거다 라고 할만한 내용을 안나온다. 이해할 때 까지 한번 찾아보자. What does "rc" mean in dot files? https://stackoverflow.com/questions/11030552/what-does-rc-mean-in-dot-files What domes "rc" in .bashrc stand for? https://unix.stackexchange.com/questions/3467/what-does-rc-in-bashrc-stand-for The Origin of the Shell : https://multicians.org/shell.html CTSS wa..