Documentation

- Correct task-faq.5 so that the sequence \033 shows up properly when
  rendered by 'man', rather than 033.
This commit is contained in:
Paul Beckingham 2010-03-28 23:59:34 -04:00
parent b6e9b84c80
commit a3a941fd92

View file

@ -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 $*
}