gpt4 book ai didi

linux - 根据内容将文件分类到文件夹的 Bash 脚本;如何解决变量中的通配符?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:00:53 26 4
gpt4 key购买 nike

我正在编写一个小 helper ,将文件分类到不同的文件夹,但为什么呢?

机械师:

在我的 linux suse 服务器上运行一个程序,它创建零到无限的文件,如“file.1.1”,最后一个数字在增加(file.1.1、file.1.2、file.1.3 等等)。在这个文件中是包含关键字的可变文本,在这个例子中有水果。每种水果都是一个订单,并由另一个脚本转换为电子邮件。问题是,这个其他脚本获取所有文件并将它们全部转换为邮件并将它们发送给一个供应商。那可不好。

所以我会将它们分类到不同的目录中,以便将它们转换为发送给正确供应商的邮件。

举个例子:

file.1.1 是苹果的订单,所以我的脚本搜索关键字“apple”。包含此文件“apple”,然后脚本将此文件移动到文件夹“apple”。如果不是,则将文件移动到正确的“水果文件夹”。

目录结构是这样的:

/home/me/sandbox/          <- here are all the files  
/home/me/sandbox/apple/
/home/me/sandbox/strawberry/
/home/me/sandbox/cherry/
/home/me/sandbox/plum/

现在我的脚本:

#! /bin/bash -x

#Variablen Deklaration start
declare -a array;
array[key1]='strawberry'
array[key2]='apple'

VAR1="strawberry"
VAR2="apple"

XXSTRAWBERRY="/home/me/sandbox/strawberry/"
XXSTADTBIB="/home/me/sandbox/stadtbib/"
#Variablen Deklaration ende

find file.1.* > dateiliste.txt

for fn in `cat dateiliste.txt`; do
for key1 in ${!array[@]}; do
temp=$(find $fn | xargs grep $VAR1) #my problem
if [ "$temp" = *"$VAR1"* ]; then
cp $fn $XXSTRAWBERRY
else
cp $fn $XXAPPLES
fi
done
done

bash 输出是这样的:

me@server=test:~/sandbox > ./new\ \ 1.sh
+ declare -a array
+ array[key1]=strawberry
+ array[key2]=apple
+ VAR1=strawberry
+ VAR2=apple
+ ORTstrawberry=/home/me/sandbox/strawberry/
+ ORTapple=/home/me/sandbox/apple/
+ find file.1.1 file.1.2 file.1.3 file.1.4 file.1.5
++ cat dateiliste.txt
+ for fn in '`cat dateiliste.txt`'
+ for key1 in '${!array[@]}'
++ xargs grep strawberry
++ find file.1.1
+ temp=
+ '[' '' = '*"$VAR1"*' ']'
+ cp file.1.1 /home/me/sandbox/apple/
+ for fn in '`cat dateiliste.txt`'
+ for key1 in '${!array[@]}'
++ xargs grep strawberry
++ find file.1.2
+ temp='Bestellung fuer strawberry'
+ '[' 'Bestellung fuer strawberry' = '*"$VAR1"*' ']'
+ cp file.1.2 /home/me/sandbox/apple/
+ for fn in '`cat dateiliste.txt`'
+ for key1 in '${!array[@]}'
++ xargs grep strawberry
++ find file.1.3
+ temp=
+ '[' '' = '*"$VAR1"*' ']'
+ cp file.1.3 /home/me/sandbox/apple/
+ for fn in '`cat dateiliste.txt`'
+ for key1 in '${!array[@]}'
++ xargs grep strawberry
++ find file.1.4
+ temp='Bestellung fuer strawberry'
+ '[' 'Bestellung fuer strawberry' = '*"$VAR1"*' ']'
+ cp file.1.4 /home/me/sandbox/apple/
+ for fn in '`cat dateiliste.txt`'
+ for key1 in '${!array[@]}'
++ xargs grep strawberry
++ find file.1.5
+ temp=
+ '[' '' = '*"$VAR1"*' ']'
+ cp file.1.5 /home/me/sandbox/apple/

所以这是我的问题。

文件包含的内容很多,所以关键字并不孤单。使用我的临时变量“$temp”,我希望 grep 的输出具有正确的关键字。这行得通,但为了在 $temp 中的 grep 输出和 $var1 中的关键字之间取得平衡,我需要一个通配符。

因此,如果 grep 输出 ($temp) 包含 apple ($var1),则移动(在示例副本中)file.1.* ($fn) 到 apple/($XXAPPLE) .

我怎样才能轻松实现这一点?我在 bash 脚本方面没有太多经验

谢谢大家:)

最佳答案

#!/bin/bash 

#Variablen Deklaration start
declare -a fruits;
fruits=(strawberry apple banana)

ls file.1.* | while read f
do
for fruit in "${fruits[@]}"; do
grep -i $fruit "$f" >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo Copying $f to $fruit
cp "$f" $fruit
fi
done
done

关于linux - 根据内容将文件分类到文件夹的 Bash 脚本;如何解决变量中的通配符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20283535/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com