linux 之shell指令碼練習

來源:互聯網
上載者:User

標籤:使用者登入   更改密碼   service   linux   start   

一、

#!/bin/bash
#自動添加使用者,並使初始密碼為使用者賬戶名,且使用者登入時強制其更改密碼
i=1
while [ $i -le 15 ]
do
 if [ $i -le 9 ]
 then
  useradd user0$i
  echo "user0$i" | passwd --stdin user0$i &> /dev/null
  chage -d 0 user0$i
 else
  useradd user$i
  echo "user$i" | passwd --stdin user$i &> /dev/null
  chage -d 0 user$i
 fi  
# userdel -r user$i

 let i++
done


#!/bin/bash
#檢測當前系統任一服務狀態,若未啟動則啟動之。
read -p ‘Input a service name: ‘ ser
service $ser status &> /dev/null
if [ $? -eq 0 ];
  then
   echo "服務運行中."
# elif [ $? -eq 3 ];
#  then service $ser start
 else
  service $ser start

fi



#!/bin/bash
#輸出30至80之間的偶數及統計個數
g=0

for i in {30..80}
 do
  yu=`expr $i % 2`
  
  if [ $yu -eq 0 ]
  then echo -n "$i  " && let g++
  fi
done
echo
echo "There are $g 偶數 totally."



#!/bin/bash
#階乘運算
read -p ‘Input a number: ‘ num
cj=1
for (( i=1;i<=$num;i++ ))
do
 let cj*=i
done
echo $cj


#!/bin/bash
#產生九九乘法表
for (( i=1;i<=9;i++ ))
 do
  for (( j=1;j<=i;j++ ))
  do
   abc=`expr $i \* $j`
   echo -n "$j*$i=$abc  "
   
  done
 
 echo 
done



#!/bin/bash
#備份MySQL日誌
dir=/var/lib/mysql
index=$dir/localhost-bin.index
i=`cat $index | wc -l`
i=$(( $i - 1 ))

if [ ! -e /logbackup ]
 then mkdir /logbackup
fi

for log in `head -$i $index | awk -F ‘/‘ ‘{print $2}‘`
do cp -nv $dir/$log /logbackup
done


#!/bin/bash
#檢測192.168.1.0/24網段,並記錄不線上的IP地址資訊
net=192.168.1.
#for i in 1 2 3 4 5 6 7 8 9 10
#for i in `seq 254`
for i in {a..z}
do
 ping -c 3 $net$i &> /dev/null
 if
  [ $? -eq 0 ]
 then
  echo "$net$i is online!!!"
 else
  echo "$net$i is offline!!!"
 fi
done

本文出自 “Paundudo” 部落格,請務必保留此出處http://paundudo.blog.51cto.com/3741758/1538738

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.