summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/de/weechat_user.de.txt4
-rw-r--r--doc/en/weechat_user.en.txt4
-rw-r--r--doc/fr/weechat_user.fr.txt4
-rw-r--r--doc/it/weechat_user.it.txt4
-rw-r--r--doc/ja/weechat_user.ja.txt4
-rw-r--r--doc/pl/weechat_user.pl.txt4
6 files changed, 12 insertions, 12 deletions
diff --git a/doc/de/weechat_user.de.txt b/doc/de/weechat_user.de.txt
index 5591396ef..c0d35c4f0 100644
--- a/doc/de/weechat_user.de.txt
+++ b/doc/de/weechat_user.de.txt
@@ -2042,7 +2042,7 @@ $ echo '*hello!' >~/.weechat/weechat_fifo_12345
mit "\n" getrennt werden):
----
-$ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
+$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo_12345
----
Das nachfolgende Skript sendet einen Befehl an alle laufenden WeeChat Instanzen:
@@ -2053,7 +2053,7 @@ Das nachfolgende Skript sendet einen Befehl an alle laufenden WeeChat Instanzen:
if [ $# -eq 1 ]; then
for fifo in ~/.weechat/weechat_fifo_*
do
- echo -e "$1" >$fifo
+ printf '%b\n' "$1" >"$fifo"
done
fi
----
diff --git a/doc/en/weechat_user.en.txt b/doc/en/weechat_user.en.txt
index 0409a610a..e07ac810a 100644
--- a/doc/en/weechat_user.en.txt
+++ b/doc/en/weechat_user.en.txt
@@ -2003,7 +2003,7 @@ $ echo '*hello!' >~/.weechat/weechat_fifo_12345
with "\n"):
----
-$ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
+$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo_12345
----
You can write a script to send command to all running WeeChat at same time,
@@ -2015,7 +2015,7 @@ for example:
if [ $# -eq 1 ]; then
for fifo in ~/.weechat/weechat_fifo_*
do
- echo -e "$1" >$fifo
+ printf '%b\n' "$1" >"$fifo"
done
fi
----
diff --git a/doc/fr/weechat_user.fr.txt b/doc/fr/weechat_user.fr.txt
index db8d3128b..36bc67154 100644
--- a/doc/fr/weechat_user.fr.txt
+++ b/doc/fr/weechat_user.fr.txt
@@ -2071,7 +2071,7 @@ $ echo '*bonjour !' >~/.weechat/weechat_fifo_12345
les séparer par "\n") :
----
-$ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
+$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo_12345
----
Vous pouvez écrire un script qui envoie les commandes à tous les WeeChat qui
@@ -2083,7 +2083,7 @@ tournent en même temps, par exemple :
if [ $# -eq 1 ]; then
for fifo in ~/.weechat/weechat_fifo_*
do
- echo -e "$1" >$fifo
+ printf '%b\n' "$1" >"$fifo"
done
fi
----
diff --git a/doc/it/weechat_user.it.txt b/doc/it/weechat_user.it.txt
index a75ab9274..07e3397df 100644
--- a/doc/it/weechat_user.it.txt
+++ b/doc/it/weechat_user.it.txt
@@ -2085,7 +2085,7 @@ $ echo '*hello!' >~/.weechat/weechat_fifo_12345
separarli con "\n"):
----
-$ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
+$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo_12345
----
È possibile realizzare uno script per inviare un comando a tutte le istanze di
@@ -2097,7 +2097,7 @@ WeeChat in esecuzione, per esempio:
if [ $# -eq 1 ]; then
for fifo in ~/.weechat/weechat_fifo_*
do
- echo -e "$1" >$fifo
+ printf '%b\n' "$1" >"$fifo"
done
fi
----
diff --git a/doc/ja/weechat_user.ja.txt b/doc/ja/weechat_user.ja.txt
index 93023f79a..ce7fa7df4 100644
--- a/doc/ja/weechat_user.ja.txt
+++ b/doc/ja/weechat_user.ja.txt
@@ -2006,7 +2006,7 @@ $ echo '*hello!' >~/.weechat/weechat_fifo_12345
(複数のコマンドは "\n" で分割してください):
----
-$ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
+$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo_12345
----
実行中の WeeChat
@@ -2018,7 +2018,7 @@ $ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
if [ $# -eq 1 ]; then
for fifo in ~/.weechat/weechat_fifo_*
do
- echo -e "$1" >$fifo
+ printf '%b\n' "$1" >"$fifo"
done
fi
----
diff --git a/doc/pl/weechat_user.pl.txt b/doc/pl/weechat_user.pl.txt
index cc137993a..b447de471 100644
--- a/doc/pl/weechat_user.pl.txt
+++ b/doc/pl/weechat_user.pl.txt
@@ -2022,7 +2022,7 @@ $ echo '*hello!' >~/.weechat/weechat_fifo_12345
oddzielić je za pomocą "\n"):
----
-$ echo -e '*/python unload\n*/python autoload' >~/.weechat/weechat_fifo_12345
+$ printf '%b' '*/python unload\n*/python autoload\n' >~/.weechat/weechat_fifo_12345
----
Można napisać skrypt wysyłający komendy do wszystkich uruchomionych kopi WeeChat
@@ -2034,7 +2034,7 @@ w tym samym czasie, na przykład:
if [ $# -eq 1 ]; then
for fifo in ~/.weechat/weechat_fifo_*
do
- echo -e "$1" >$fifo
+ printf '%b\n' "$1" >"$fifo"
done
fi
----