Linux入门-day2

gcc环境配置
$ sudo apt-get install build-essential
shell编程

1.helloworld.sh

$ vim helloworld.sh
#!/bin/bash
echo "helloworld"
​
var="hello var" //定义变量var 变量赋值等号两边不能有空格
echo $var       //输出变量,$+变量名
​
for file in $(ls /home/path/); do   //for循环输出
    echo "${file}"
done

为脚本添加可执行权限

$ chmod +x helloworld.sh

执行脚本

$ ./helloworld.sh

2.累加1到100的和

#!/bin/bash
sum=0
for i in {1..100};do
    let sum+=i
done
​
echo $sum

3.ping局域网ip地址

#!/bin/bash
for i in {1..254};do
    ping -c 2 -i 0.5 192.168.180.$i &> /dev/null    //&> 重定向输出到/dev/null
    if [ $? -eq 0 ];then
        echo "192.168.180.&i is up"
    else
        echo "192.168.180.&i is down"
    fi
done

4.脚本获取本机ip地址

#!/bin/bash
str=$(ifconfig)         //笨方法1
echo ${#str}
echo ${str:78:15}
​
//使用grep和awk从ifconfig输出中提取IPv4地址
ip_address=$(ifconfig ens33 | grep 'inet ' | awk '{print $2}')
echo "IP Address: $ip_address"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值