summaryrefslogtreecommitdiff
path: root/doc/de
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2007-08-13 16:05:44 +0000
committerSebastien Helleu <flashcode@flashtux.org>2007-08-13 16:05:44 +0000
commit57ceaba3d1f21408599c2bbe83697caf0951d4f6 (patch)
treede8849e9f48f4e38df70a85d71c8df9668e3fc6d /doc/de
parentaed84560f8004a40b548c97bd8b810316a46a5b6 (diff)
downloadweechat-57ceaba3d1f21408599c2bbe83697caf0951d4f6.zip
Updated FIFO sample script in doc
Diffstat (limited to 'doc/de')
-rw-r--r--doc/de/weechat.de.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/de/weechat.de.xml b/doc/de/weechat.de.xml
index 9d6c77da9..5bd65ed24 100644
--- a/doc/de/weechat.de.xml
+++ b/doc/de/weechat.de.xml
@@ -1215,7 +1215,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<screen>
#!/bin/sh
if [ $# -eq 1 ]; then
- for fifo in $(/bin/ls ~/.weechat/weechat_fifo_* 2>/dev/null); do
+ for fifo in ~/.weechat/weechat_fifo_*
+ do
echo -e "$1" >$fifo
done
fi