対話型シェルスクリプト
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
#author("2019-09-18T13:29:00+09:00","Group2","Group2")
[[hidekiwiki]]
#html{{
<meta name="description" content="https://fukumoto-tech.s...
<meta name="keywords" content="普通人間製作所,world fukum...
条件,シェルスクリプト,bash" /> 
<link rel="canonical" href="https://fukumoto-tech.servebl...
<br>
<a href="https://it.blogmura.com/linux/"><img src="https:...
<!-- admax -->
<script src="https://adm.shinobi.jp/s/1a0429ab1f292195e9a...
<!-- admax -->
</html>
}}
**対話型シェルスクリプト [#ce29c745]
サンプルスクリプトです。あくまで、自己責任で実行してくだ...
Yes/No を判定するシェルスクリプト
例の内容
Yesと入力した場合は、/root/anaconda-ks.cfgファイルの末尾...
Noと入力した場合は、exitで抜ける。
-------------------------------------
#!/bin/sh
FileNAME=/root/anaconda-ks.cfg
echo "$FileNAME"
read FileNAME
echo "tail file ? [y/n]"
read ANSER
if [ $ANSER = 'y' -o $ANSER = 'yes' ]; then
tail /root/anaconda-ks.cfg
fi
if
[ $ANSER = 'n' -o $ANSER = 'no' ];then
echo "finsh!!";exit
fi
終了行:
#author("2019-09-18T13:29:00+09:00","Group2","Group2")
[[hidekiwiki]]
#html{{
<meta name="description" content="https://fukumoto-tech.s...
<meta name="keywords" content="普通人間製作所,world fukum...
条件,シェルスクリプト,bash" /> 
<link rel="canonical" href="https://fukumoto-tech.servebl...
<br>
<a href="https://it.blogmura.com/linux/"><img src="https:...
<!-- admax -->
<script src="https://adm.shinobi.jp/s/1a0429ab1f292195e9a...
<!-- admax -->
</html>
}}
**対話型シェルスクリプト [#ce29c745]
サンプルスクリプトです。あくまで、自己責任で実行してくだ...
Yes/No を判定するシェルスクリプト
例の内容
Yesと入力した場合は、/root/anaconda-ks.cfgファイルの末尾...
Noと入力した場合は、exitで抜ける。
-------------------------------------
#!/bin/sh
FileNAME=/root/anaconda-ks.cfg
echo "$FileNAME"
read FileNAME
echo "tail file ? [y/n]"
read ANSER
if [ $ANSER = 'y' -o $ANSER = 'yes' ]; then
tail /root/anaconda-ks.cfg
fi
if
[ $ANSER = 'n' -o $ANSER = 'no' ];then
echo "finsh!!";exit
fi
ページ名: