일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Octavia
- OpenStack
- ceph-ansible
- Docker
- repository
- libvirt
- Arch
- Kubeflow
- Linux
- terraform
- ubuntu
- i3
- Kubernetes
- k8s
- cloud-init
- awx
- ceph
- kolla-ansible
- KVM
- grafana-loki
- kolla
- HTML
- port open
- golang
- archlinux
- yum
- pacman
- cephadm
- nfs-provisioner
- Ansible
Archives
- Today
- Total
목록seq (1)
YJWANG
seq
for문을 사용할 때 seq를 활용하곤한다. seq [시작 숫자] [간격] [끝 숫자] # for num in $(seq 1 10);do echo "test num = $num"; done test num = 1 test num = 2 test num = 3 test num = 4 test num = 5 test num = 6 test num = 7 test num = 8 test num = 9 test num = 10# seq 1 10 1 2 3 4 5 6 7 8 9 10 # seq 1 2 10 1 3 5 7 9 # seq 3 6 3 4 5 6 # seq 3 2 6 3 5
00.OS
2020. 8. 27. 22:02