【发布时间】:2013-12-15 12:27:16
【问题描述】:
我正在编写一个将文件分类到不同文件夹的小助手,但为什么呢?
机械师:
在我的 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 脚本方面没有太多经验
谢谢大家:)
【问题讨论】:
标签: linux bash variables scripting wildcard