summaryrefslogtreecommitdiff
path: root/doc/de
diff options
context:
space:
mode:
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