diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-22 10:27:46 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-22 10:27:46 +0100 |
commit | 6fe09ccb1995a35c03ee7906d04361a5f9e6b86f (patch) | |
tree | 8a01e17ad8cdeff4f2e00a7227b222dd9d2a526e /doc/ja/weechat_user.ja.txt | |
parent | aad5765e35e6b1de513adf36323cdb8bba9dc95e (diff) | |
download | weechat-6fe09ccb1995a35c03ee7906d04361a5f9e6b86f.zip |
doc: replace "echo -e" with "printf" in user's guide
Diffstat (limited to 'doc/ja/weechat_user.ja.txt')
-rw-r--r-- | doc/ja/weechat_user.ja.txt | 4 |
1 files changed, 2 insertions, 2 deletions
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 ---- |