English 中文(简体)
在一个阵列中储存发现指挥的产出[重复]
原标题:Store the output of find command in an array [duplicate]
  • 时间:2011-11-21 14:25:20
  •  标签:
  • arrays
  • bash

我如何将<代码>定出的1的结果纳入一个阵列?

住宿:

for /f "delims=/" %%G in ( find $1 ) do %%G | cut -d/ -f6-
问题回答

我要 cr。

In bash:

 file_list=()
 while IFS= read -d $   -r file ; do
     file_list=("${file_list[@]}" "$file")
 done < <(find "$1" -print0)

 echo "${file_list[@]}"

<编码>file_list 现为包含find“$1结果的阵列。

什么是关于“领域6”的特例? 不清楚你试图与你的<编码>cut指令做什么。

您是否想在第6版目录之后将每份档案加以削减?

for file in "${file_list[@]}" ; do
    echo "$file" | cut -d/ -f6-
done

但为什么“领域6”? Can 我假定,你实际上只想回到这条道路的最后部分?

for file in "${file_list[@]}" ; do
    echo "${file##*/}"
done

甚至

echo "${file_list[@]##*/}"

这将使你成为阵列中每一条道路的最后一条路子。 即便是这样,你也可以做一些事情。

for file in "${file_list[@]##*/}" ; do
    echo "$file"
done

Explanation of the bash program elements:

(可能使用<代码>readarray代替)

find "$1" -print0

Find stuff and print the full file name on the standard output, followed by a null character . This is important as we will split that output by the null character later.

<(find "$1" -print0)

"Process Substitution" : The output of the find subprocess is read in via a FIFO (i.e. the output of the find subprocess behaves like a file here)

while ... 
done < <(find "$1" -print0)

<代码>限值/代码>的产出 分项目改为<代码>。 经由<条码>和<>查询

IFS= read -d $   -r file

This is the while condition:

read

阅读一线投入(来自发现的指挥)。 “read的回归价值为0,除非在离去时碰到EOF。

-d $  

......确定无效性质(见现金页上的QUOTING)。 之所以这样做,是因为我们先前使用了-print0

-r

反弹不被视为越狱性质,因为它可能是档案的一部分。

file

Result (first word actually, which is unique here) is put into variable file

IFS= 

指挥由<代码>IFS管理,该表载有<代码>read的特性的特别变数将输入字序。 因为我们不想分裂。

lo内:

file_list=("${file_list[@]}" "$file")

在坡道上,文件“清单阵列”刚刚通过<代码>(file)增长,并适当引用。

arrayname=( $(find $1) )

我不理解你的问题? 如果你看看如何与这一阵列合作,那么你就能够穿透像以下所有阵列的内容:

for element in $(seq 0 $((${#arrayname[@]} - 1)))
do
        echo "${arrayname[$element]}"
done

这可能不是100%的无ool可击,但很可能需要99%的时间(我使用全球团结联盟的公用设施;发展局在未经修改的情况下赢得了t工作;此外,还使用批号档案系统:

declare -a BASH_ARRAY_VARIABLE=$(find <path> <other options> -print0 | sed -e  s/x0$//  | awk -F    BEGIN { printf "("; } { for (i = 1; i <= NF; i++) { printf "%c"gensub(/"/, "\\"", "g", $i)"%c ", 34, 34; } } END { printf ")"; } )

Then you would iterate over it like so:

for FIND_PATH in "${BASH_ARRAY_VARIABLE[@]}"; do echo "$FIND_PATH"; done

Make sure to enclose $FIND_PATH inside double-quotes when working with the path.

Here s a simpler pipeless version, based on the version of user2618594

declare -a names=$(echo "("; find <path> <other options> -printf  "%p"  ; echo ")")
for nm in "${names[@]}"
do
    echo "$nm"
done




相关问题
Parse players currently in lobby

I m attempting to write a bash script to parse out the following log file and give me a list of CURRENT players in the room (so ignoring players that left, but including players that may have rejoined)...

encoding of file shell script

How can I check the file encoding in a shell script? I need to know if a file is encoded in utf-8 or iso-8859-1. Thanks

Bash usage of vi or emacs

From a programming standpoint, when you set the bash shell to use vi or emacs via set -o vi or set -o emacs What is actually going on here? I ve been reading a book where it claims the bash shell ...

Dynamically building a command in bash

I am construcing a command in bash dynamically. This works fine: COMMAND="java myclass" ${COMMAND} Now I want to dynamically construct a command that redirectes the output: LOG=">> myfile.log ...

Perform OR on two hash outputs of sha1sum

I want perform sha1sum file1 and sha1sum file2 and perform bitwise OR operation with them using bash. Output should be printable i.e 53a23bc2e24d039 ... (160 bit) How can I do this? I know echo $(( ...

Set screen-title from shellscript

Is it possible to set the Screen Title using a shell script? I thought about something like sending the key commands ctrl+A shift-A Name enter I searched for about an hour on how to emulate ...

热门标签