0

示例我运行 sh mycode Manu gg44

我需要获取名称为 Manu 的文件,其内容为:gg44 192.168.1.2.(第二行)(这个数字我在下面解释)

(在目录 DIR=/h/Manu/HOME/hosts 已经有文件 Alex cat Alex ff55 198.162.1.1.(第二行))

因此 mycode 使用第一行 gg44 创建名为 Manu 的文件,并在第二行生成 IP。但是对于生成 IP,他与 Alex 文件 IP 进行了比较。所以 Manu 的第二行必须是 198.162.1.2。如果目录中有多个文件,则必须检查所有文件的所有第二行,然后根据它们生成。

[CODE]
DIR=/h/Manu/HOME/hosts       #this is a directory where i have my files (structure of the files above)
for j in $1 $2             #$1 is Manu; $2 is gg44
do
              if [ -d $DIR ]             #checking if directory exists (it exists already)
              then                        #if it exists
              for i in $*           #  for every file in this directory do operation
              do
              sort /h/ManuHOME/hosts/* |  tail -2 | head -1            # get second line of every file
                IFS="." read A B C D                   # divide number  in second line into 4 parts (our number 192.168.1.1. for example)
      if [ "$D" != 255 ]             #compare D (which is 1 in our example: if its less than 255)
     then
     D=` expr $D + 1 `             #then increment it by 1
       else
     C=` expr $C + 1 `          #otherwise increment C and make D=0
     D=0
fi
           echo "$2 "\n" $A.$B.$C.$D." >/h/Manu/HOME/hosts/$1
    done done                  #get $2 (which is gg44 in example as a first line and get ABCD as a second line)[/CODE]

结果它创建了名为 Manu 和第一行的文件,但第二行是完全错误的。它给了我... 1。还有错误消息排序:打开失败:/h/u15/c2/00/c2rsaldi/HOME/hosts/yu:没有这样的文件或目录

yu n ...1。

4

1 回答 1

0
#!/bin/bash
dir=/h/Manu/HOME/hosts
filename=$dir/$1
firstline=$2

# find the max IP address from all current files:
maxIP=$(awk 'FNR==2' $dir/* | cut -d. -f4 | sort -nr | head -1)
ip=198.162.1.$(( maxIP + 1 ))

cat > $filename <<END
$firstline
$ip
END

当您收到超过 255 个文件时,我将由您决定如何处理...

于 2013-10-11T21:01:35.317 回答