Pārlūkot izejas kodu

Convert grep to array

Bob Mottram 8 gadus atpakaļ
vecāks
revīzija
1fc24f5e5c
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      src/freedombone-freedns

+ 1
- 1
src/freedombone-freedns Parādīt failu

@@ -47,7 +47,7 @@ function item_in_array {
47 47
 }
48 48
 
49 49
 detected_codes=()
50
-codelines=$(grep "_CODE=" $CONFIGURATION_FILE | uniq)
50
+codelines=($(grep "_CODE=" $CONFIGURATION_FILE | uniq))
51 51
 for line in "${codelines[@]}"
52 52
 do
53 53
     code=$(echo "$line" | awk -F '=' '{print $2}')