소스 검색

Update update-lxcs.sh

tweak
tteckster 2 년 전
부모
커밋
485444b07d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      misc/update-lxcs.sh

+ 1 - 1
misc/update-lxcs.sh

@@ -49,7 +49,7 @@ function update_container() {
   esac
 }
 header_info
-for container in $(pct list | tail -n +2 | cut -f1 -d' '); do
+for container in $(pct list | awk '{if(NR>1) print $1}'); do
   excluded=false
   for excluded_container in "${excluded_containers[@]}"; do
     if [ "$container" == "$excluded_container" ]; then