diff options
Diffstat (limited to 'Functions/Misc/nslookup')
-rw-r--r-- | Functions/Misc/nslookup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Misc/nslookup b/Functions/Misc/nslookup index 15afb2ff1..d59a5e66c 100644 --- a/Functions/Misc/nslookup +++ b/Functions/Misc/nslookup @@ -10,7 +10,7 @@ trap 'print -p exit;return' INT coproc command nslookup pid=$! -while read -pk1 char; do +while read -pk 1 char; do line="$line$char" [[ "$line" = *' > ' ]] && break @@ -21,7 +21,7 @@ line='' while vared -p '> ' line; do print -p "$line" line='' - while read -pk1 char; do + while read -pk 1 char; do line="$line$char" [[ "$line" = *' > ' ]] && break |