From a3a941fd9273fec1cd509ea88135967bd9b47780 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 28 Mar 2010 23:59:34 -0400 Subject: [PATCH] Documentation - Correct task-faq.5 so that the sequence \033 shows up properly when rendered by 'man', rather than 033. --- doc/man/task-faq.5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/man/task-faq.5 b/doc/man/task-faq.5 index 121f61149..a2211ed2e 100644 --- a/doc/man/task-faq.5 +++ b/doc/man/task-faq.5 @@ -85,7 +85,7 @@ call the task program. Here is a Bash script that does this: #! /bin/bash - printf "\033]0;task $*\a" + printf "\\033]0;task $*\a" /usr/local/bin/task $* You just need to run the script, and let the script run task. Here is a Bash @@ -93,7 +93,7 @@ function that does the same thing: t () { - printf "\033]0;task $*\a" + printf "\\033]0;task $*\a" /usr/local/bin/task $* }