#!/bin/bash
for((i=1;i<=9;i=i+1))
do
wget http://www.phun.org/specials/beautiful_women/beautiful_women_0$i.jpg
done
for((i=10;i<=45;i=i+1))
do
wget http://www.phun.org/specials/beautiful_women/beautiful_women_$i.jpg
done
--
復(fù)制到你們的腳本里跑一跑,不知道這里能不能發(fā)網(wǎng)址,我是為了增加大家的學(xué)習(xí)動力哈
for((i=1;i<=9;i=i+1))
do
wget http://www.phun.org/specials/beautiful_women/beautiful_women_0$i.jpg
done
for((i=10;i<=45;i=i+1))
do
wget http://www.phun.org/specials/beautiful_women/beautiful_women_$i.jpg
done
--
復(fù)制到你們的腳本里跑一跑,不知道這里能不能發(fā)網(wǎng)址,我是為了增加大家的學(xué)習(xí)動力哈
2017-04-02
-b block(塊設(shè)備)
-c charactor(字符)
-d directory(目錄)
-e exit(存在)
-f file(文件)
-L link(鏈接)
-p pipeline(管道)
-S SOCKET(套接字)
-c charactor(字符)
-d directory(目錄)
-e exit(存在)
-f file(文件)
-L link(鏈接)
-p pipeline(管道)
-S SOCKET(套接字)
2017-04-02
快速記憶:
-eq:equal 等于
-ne:not equal 不等于
-gt:gleater than 大于
-lt:less then 小于
-ge:gleater or equal 大于等于
-le:less or equal 小于等于
-eq:equal 等于
-ne:not equal 不等于
-gt:gleater than 大于
-lt:less then 小于
-ge:gleater or equal 大于等于
-le:less or equal 小于等于
2017-04-01
快速記憶:
-nt: new time
-ot: old time
-ef: equal file 是否為相同的源文件
-nt: new time
-ot: old time
-ef: equal file 是否為相同的源文件
2017-04-01
最新回答 / 哈哈哈小宇
第9行 ? ?for (( i=??i ?;i<=$num;i=i+1 )你那里寫錯了,應(yīng)該是數(shù)字1 ,不是 i第25行?? /usr/sbin/useradd $name$! &>/dev/null是&name&i不是!
2017-03-28
$(ps aux|grep httpd|grep -v grep|grep -v $0)
2017-03-22