Update cookie retrieval using _egrep_o (thanks @Neilpang)

This commit is contained in:
Armando Lüscher 2016-12-29 16:12:42 +01:00
parent afa3fc8bf9
commit ce9fae82bd
No known key found for this signature in database
GPG Key ID: 3D71085D14920359
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ _cyon_print_header() {
}
_cyon_get_cookie_header() {
printf "%s" "$(sed -n 's/Set-\(Cookie:.*cyon=[^;]*\).*/\1/p' "$HTTP_HEADER" | _tail_n 1)"
printf "Cookie: %s" "$(cat "$HTTP_HEADER" | grep "cyon=" | grep "^Set-Cookie:" | _tail_n 1 | _egrep_o 'cyon=[^;]*;' | tr -d ';')"
}
_cyon_login() {