Add x86_64 folder

This commit is contained in:
Santiago Lo Coco 2022-02-05 23:44:30 -03:00
parent 8d56bcb8ba
commit 469d53a390
3 changed files with 19 additions and 0 deletions

19
test.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
set -e
#files=($(find -H /home/slococo/Documents/arch-repo/any -type f -regex '.*zaread-git.*'))
mapfile -t files < <(find -H /home/slococo/Documents/arch-repo/any -type f -regex '.*zaread-git.*')
for file in "${files[@]}"; do
echo "1 $file"
done
#IFS=$'\n'
while read -r -d '' file ; do
echo "2 $file"
done < <(find -H /home/slococo/Documents/arch-repo/any -regex '.*zaread-git.*' -print0)
#while read -r file ; do
while read -r -d '' file ; do
echo "3 $file"
done < <(find -H arch-repo/any -regex '.*st-git.*' -print0)
echo "fin"

Binary file not shown.