Bash 함수에서 배열 반환
#!/bin/bash
# Example of how to return an array from a function
# using pass-by-reference.
# Halt on error, no globbing, no undeclared vars
set -efu
function getFnames
####################################################
# Load all filenames into an array.
# Arguments:
# $1 = name of return array (must be global)
# $2 = first path for 'find' command to search
# ... other paths for 'find' to search
#
{
# store the name of the global array for return.
local h_rtnArr=$1
# discard first argument in argv
shift
# mapfile does heavy lifting. See: help mapfile
mapfile $h_rtnArr < <(find $@ -type f)
# TODO: return error code
}
# Global array
declare -a FnameArr
# Pass FnameArr by reference
getFnames FnameArr /boot
# List results to stdout
arrSz=${#FnameArr[@]}
for (( ndx=0; ndx < $arrSz; ++ndx )); do
echo -n "${ndx}: ${FnameArr[$ndx]}"
done
이 스크립트를 실행하면/boot 구역에 있는 모든 파일의 열거 목록을 생성합니다.즐겨라!
Reference
이 문제에 관하여(Bash 함수에서 배열 반환), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jrbrtsn/returning-an-array-from-a-bash-function-378a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)