我偶然发现了#34;扩展模式" Bash的extglob。 http://wiki.bash-hackers.org/syntax/pattern
我正在调查此案:
想象一下像这样的目录结构:
/basedir/2017/02/26/uniquedirs1/files.log
/basedir/2017/02/27/uniquedirs2/files.log
/basedir/2017/02/28/uniquedirs3/files.log
/basedir/2017/03/01/uniquedirs4/files.log
/basedir/2017/03/02/uniquedirs5/files.log
如果我想列出目录2017/02/27
和2017/02/28
的文件,我只需写一下:
ls /basedir/2017/02/@("27"|"28")/*/files.log
真棒! \ o /
现在的问题。如何在Bash扩展模式中定义多个目录?
这不起作用:
ls /basedir/2017/@("02/28"|"03/01")/*/files.log
ls /basedir/2017/@("02\/28"|"03\/01")/*/files.log
有什么方法可以为"扩展模式"定义多个目录?
答案 0 :(得分:4)
路径名生成仅将模式应用于路径名组件;它们永远不会匹配分隔组件的/
。支撑扩张在这里会更清洁:
ls /basedir/2017/{2/28,3/01}/*/files.log
首先会扩展到
ls /basedir/2017/2/28/*/files.log /basedir/2017/3/01/*/files.log
在对两个结果模式执行路径名生成之前。
答案 1 :(得分:0)
#!/bin/bash
# User input:
start_date="2017-02-27"
day_range=2
# Logic:
declare -a 'date_range=($( echo {'"$day_range"'..0} | xargs -I{} -d " " date -d "'"$start_date"' +{} day" --rfc-3339="date" ))'
#this creates an array with dates:
#2017-03-02 2017-03-01 2017-02-28 2017-02-27
eval ls "basedir/{$(IFS=\, ; echo "${date_range[*]//-//}")}/*/files.log"
#this translates to:
#ls basedir/{2017/03/01,2017/02/28,2017/02/27}/*/files.log
如果你不想使用像grep这样的工具来获取数据,如果你不能使用文件创建日期,这会更有用。