echo

機能

テキストの表示

起動方法

    echo [-n] [string...]

説明

コマンドの後ろの文字列(string)を標準出力に出力する。

オプション

-n
改行文字を出力しない。

使用例

# echo test
test
# echo Tomohiro Abe
Tomohiro Abe
# echo -n not return
not return #        <- 改行を出力しないのでプロンプトが出力の後ろに表示される

参考


Home | Contents
Mail