码迷,mamicode.com
首页 > 系统相关 > 详细

【Linux-shell】shell脚本基础语法练习

时间:2015-07-21 15:24:35      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:linux   shell   脚本   for   if   

一直在学习,也一直在忘记,今天借助这篇博文,记录下自己学习过程中的一些最基础的东西!


1、for

#!/bin/bash

for i in {1..10}
do
    echo $i
done

扫描目标网段中活动的ip

#!/bin/bash

for ip in 192.168.1.{1..255} ;
do
	ping $ip -c 2 &> /dev/null ;

	if [ $? -eq 0 ];
	then
		echo $ip is alive
	fi
done

2、if

#!/bin/bash
# 判断当前用户是否为root

if [ $UID -eq 0 ];
then
	echo You are root user.
else
	echo You are nothing.
fi


本文出自 “轩碧云” 博客,请务必保留此出处http://rebybyx.blog.51cto.com/7262320/1676434

【Linux-shell】shell脚本基础语法练习

标签:linux   shell   脚本   for   if   

原文地址:http://rebybyx.blog.51cto.com/7262320/1676434

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!