diff options
author | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2014-06-30 09:06:54 +0200 |
---|---|---|
committer | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2014-06-30 09:06:54 +0200 |
commit | 44ec89ae2c4ef99ca2e418a3d809029f95f0a727 (patch) | |
tree | ba3440d51f1725884efc9b8b15d06b87078bb870 /bb.sh | |
parent | 8e6d61539ff6f8d3fffb95d59a90539571aac76c (diff) |
Manual fix for #54
Diffstat (limited to 'bb.sh')
-rwxr-xr-x | bb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -785,7 +785,7 @@ tags_in_post() { # Prints one line with space-separated tags to stdout posts_with_tags() { [ $# -lt 1 ] && return - tag_files="$(echo "$@" | sed "s/\S\+/tag_&.html/g")" + tag_files="$(echo "$@" | sed "s/\S\+/$prefix_tags_&.html/g")" sed -n '/^<h3><a class="ablack" href="[^"]*">/{s/.*href="\([^"]*\)">.*/\1/;p}' $tag_files } |