登录按钮
加入收藏
设为首页
首页
期刊杂志
SQL Life
生活时光
文化艺术
程序人生
Oracle笔记
Oracle优化
Oracle管理
备份与恢复
Linux系统
财经行情
官方微博
当前位置:
首页
>
Linux系统
站内搜索(标题)
站内搜索(正文)
站内搜索(来源)
站内搜索(作者)
淘宝网搜索
京东商城搜索
凡客搜索
麦包包搜索
当当网搜索
卓越网搜索
迅雷看看
百度搜索
Google搜索
Linux系统
shell脚本基本经典程序
时间:2013/9/11 13:39:51 作者:说歌社区 来源:www.solgle.com 查看:373 评论:0
内容摘要:
#using if and then to select file or directoryif [ ! -e logical ]; then 琀漀甀挀栀 logical 攀挀栀漀 "Just make a file logical" 攀砀椀琀 1elif [ ...
#using if and then to select file or directory
if [ ! -e logical ]; then
touch logical
echo "Just make a file logical"
exit 1
elif [ -e logical ] && [ -f logical ]; then
rm logical
mkdir logical
echo "remove file ==> logical"
echo "and make directory logical"
exit 1
elif [ -e logical ] && [ -d logical ]; then
rm -rf logical
echo "remove directory ==> logical"
exit 1
else
echo "Does here have anythings?"
fi
#using until do done
echo "Press Y/y to stop"
until [ "$yn" = "Y" ] || [ "$yn" = "y" ]
do
read yn
done
echo "stop here"
#using for do done
LIST="tomy jony mary Geoge"
for i in $LIST
do
echo $i
done
#using case mode
echo "Press your select one,two,three"
read number
case $number in
one)
echo "your choice is one"
;;
two)
echo "your choice is two"
;;
three)
echo "your choice is three"
;;
*)
echo "Usage (one|two|three)"
exit 1
esac
#uting while and loop
declare -i i
declare -i s
while [ "$i" != "101" ]
do
s=s+i
i=i+1
done
echo "The count is ==> $s"
标签:
shell脚本基本经典程序
solgle.com 版权所有,欢迎分享!!!
上一篇:
linux常用指令
下一篇:
linux下shell执行oracle存储过程,获得存储过程返回值
相关文章
相关评论
评论者:
验证码:
点击获取验证码
本类更新
6-3
sed常用操作解析
5-16
linux下统计某文件夹下某类型文件的个数
4-29
redistributed under the terms of the GNU Public License
4-28
-bash: scp: command not found解决方法
4-28
虚拟机装的Linux忘记了密码怎么办?
4-8
Linux安装VNC服务及配置
12-4
配置Linux服务器Ftp
10-25
Linux服务器的基本安装和配置
10-24
Linux服务器时间配置
10-24
Linux系统临时增加交换空间
本类推荐
4-8
Linux安装VNC服务及配置
12-4
配置Linux服务器Ftp
9-10
linux下shell执行oracle存储过程,获得存储过程返回值
本类排行
4-8
Linux安装VNC服务及配置
8-21
在redhat6及以上版本关闭防火墙
7-31
Oracle Enterprise Linux 6.5无法进入桌面的问题解决
8-21
Oracleasm下载地址,安装及配置
8-13
修改/etc/pam.d/login后linux本地无法登陆
4-28
-bash: scp: command not found解决方法
5-16
linux下统计某文件夹下某类型文件的个数
9-10
linux下shell执行oracle存储过程,获得存储过程返回值
4-28
虚拟机装的Linux忘记了密码怎么办?
4-29
redistributed under the terms of the GNU Public License
国家数据
|
中证指数
|
Oracle官方文档
|
沪深行情
|
流量统计
|
深交所
|
上交所
|
中国证券登记
|
同业拆放利率
|
巨潮资讯
|
指数估值
|
看财报
|
联系我们
-
关于我们
-
网站同盟
Copyright © 2013-2028
solgle.com
,All rights reserved.[
solgle.com
] 公安机关备案号:
51010802000219
Email:solgle@solgle.com; weixin:cd1008610000 ICP:
蜀ICP备14011070号-1