如何让 grep 搜索我放入变量中的任何数字?



因此,在我的脚本开始时,我定义了"阈值",它有一个在下一部分(2(中不存在的数字和一个将在下一部分(6(中存在的数字。我的结果是将df -h运行到一个名为 dffile 的文件。我的问题是,我如何让第 7 行中的 grep 在所有变量"阈值"中搜索文件中将存在的数字?如果我在变量中有 6 在 2 之前,它就可以工作,所以看起来好像它只搜索其中的第一个数字。谢谢!

#!/bin/bash
threshold=("2%" "6%")
df -h > dffile
grep $threshold dffile >> thresh
cat thresh | awk '{print $6}' >> finding1
LINES=()
while IFS= read -r finding1
do
find $finding1 -xdev -size +40M -exec ls -lah {} ; | head -n 10
done < "finding1"

测试服务器上df -h的输出为:

root@tstd0001:~/scripts# df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            481M     0  481M   0% /dev
tmpfs            99M  616K   98M   1% /run
/dev/vda1        25G  1.3G   23G   6% /
tmpfs           493M     0  493M   0% /dev/shm
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           493M     0  493M   0% /sys/fs/cgroup
/dev/vda15      105M  3.4M  102M   4% /boot/efi
tmpfs            99M     0   99M   0% /run/user/0

正如你在上面看到的,我的变量中的"2"不存在,而"6"存在。我的目标是让 grep 找到与变量中的数字匹配的任何数字。

让我们考虑cat output_dfdf -h命令的输出:

$ cat output_df
Filesystem      Size  Used Avail Use% Mounted on
udev            481M     0  481M   2% /dev
tmpfs            99M  616K   98M   1% /run
/dev/vda1        25G  1.3G   23G   6% /
tmpfs           493M     0  493M   6% /dev/shm
tmpfs           5.0M     0  5.0M   2% /run/lock
tmpfs           493M     0  493M   0% /sys/fs/cgroup
/dev/vda15      105M  3.4M  102M   4% /boot/efi
tmpfs            99M     0   99M   0% /run/user/0

然后,按以下方式更改脚本的第一部分:

thresold="2%|6%"
cat output_df | awk -v VAR=$thresold '{if($5~VAR)print $6}'

当然,您必须在最终脚本中用df -h替换cat output_df

这将给出输出:

/dev
/
/dev/shm
/run/lock

解释:

  • thresold="2%|6%"是一个正则表达式,与2%匹配或6%您可以将其推广为"2%|6%|X%|Y%|...|Z%"
  • 您通过-v VAR=$thresold将其作为变量传递给awk
  • 然后,当第 5 个字段与您通过'{if($5~VAR)print $6}'传递给它的正则表达式匹配时,您命令awk打印第 6 个字段

然后,您可以在不使用中间文件的情况下重新组合所有内容:

thresold="2%|6%"
for f in `df -h | awk -v VAR=$thresold '{if($5~VAR)print $6}'`
do 
find $f -xdev -size +40M -exec ls -lah {} ; 2>/dev/null | head -n10
done

在我的盒子上,它给出了以下输出:

-rw-r--r-- 1 root root 47M  6月  1 06:33 /var/cache/apt/srcpkgcache.bin
-rw-r--r-- 1 root root 47M  6月  1 06:33 /var/cache/apt/pkgcache.bin
-rw-r--r-- 1 root root 62M  4月 28 02:27 /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar
-rw-r--r-- 1 root root 56M  2月 20 06:10 /usr/lib/libreoffice/program/libmergedlo.so
-rw-r--r-- 1 root root 73M  5月 22 19:31 /usr/lib/thunderbird/libxul.so
-rwxr-xr-x 1 root root 142M  5月 22 01:35 /usr/lib/chromium-browser/chromium-browser
-rw-r--r-- 1 root root 41M  5月  8 09:57 /usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.28.2
-rw-r--r-- 1 root root 54M 11月 17  2017 /usr/lib/x86_64-linux-gnu/libLLVM-5.0.so.1
-rw-r--r-- 1 root root 99M  3月 18  2017 /usr/lib/x86_64-linux-gnu/libOxideQtCore.so.0
-rwxr-xr-x 1 root root 42M  5月  8 09:57 /usr/lib/x86_64-linux-gnu/webkit2gtk-4.0/WebKitPluginProcess2
...

注意:2>/dev/null此重定向是通过将stderr重定向到/dev/null(将stderr静音(来删除所有权限错误

您将threshold初始化为索引数组

threshold=("2%" "6%")

然后,您可以使用以下命令呼叫grep

grep $threshold dffile

由于threshold是一个数组,因此要取消引用数组中的所有值,请使用以下形式:

${threshold[@]}   ## which can be quoted to preserve whitespace in elements

当您将数组视为普通变量时,例如$threshold只返回第一个元素,例如

echo $threshold  ##  output '2%'

所以在继续之前,你需要确定你想传递给grep的内容,如果你想搜索2%6%,那么艾伦在上面有一个很好的解释。您也可以使用printf -v构造grep表达式,例如

printf -v gexp "%s|%s" ${threshold[@]}

或适当限制为前 2 个元素,

printf -v gexp "%s|%s" "${threshold[0]}" "${threshold[1]}"

然后呼叫grep

grep "$gexp" dffile >> thresh

如果您有其他问题,请告诉我。

相关内容

  • 没有找到相关文章

最新更新