aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/load_cookies.sh
blob: f4c6886731e84a9f7f75036242eb3a4ddcc327d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

if [ "$8" != "" ]; then
	cookie_file=$8
else
	cookie_file=${XDG_DATA_HOME:-$HOME/.local/share}/uzbl/cookies.txt
fi

awk -F \\t '
BEGIN {
	scheme["TRUE"] = "https";
	scheme["FALSE"] = "http";
}
$0 ~ /^#HttpOnly_/ {
printf("add_cookie \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n", substr($1,length("#HttpOnly_"),length($1)), $3, $6, $7, scheme[$4], $5)
}
$0 !~ /^#/ {
printf("add_cookie \"%s\" \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n", $1, $3, $6, $7, scheme[$4], $5)
}
' $cookie_file