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

if [ "$1" != "" ]; then
	cookie_file=$1
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