トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

Top / linux / bash examples / bash 値の入力待ちをする

#author("2017-04-25T17:33:48+09:00","default:kow","kow")
**bash 値の入力待ちをする [#e5efab6e]
~
- ''syntax:''
~
&color(red,){'' read INPUT ''};
~
~
- ''comment:''~
ユーザーからの値の入力を求めいたいときに使用。~
入力された値は、変数に代入され使用可能~
~
~
- ''Example:''
~
#highlight(php:nogutter:collapse){{
#
#cat go.sh
#!/bin/bash

echo -n "なんか入力してね ?> "
read INPUT
echo "入力の値は: "$INPUT
#
#./go.sh
なんか入力してね ?> てすと
入力の値は: てすと
#
}}
~
#highlight(end)
~
~
&tag(Linux,bash);
~
~
[[Goto Top Page>/]]
~

Top / linux / bash examples / bash 値の入力待ちをする