help-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: null record separator prints only one file


From: Chris F.A. Johnson
Subject: Re: null record separator prints only one file
Date: Mon, 18 Oct 2021 01:42:10 -0400 (EDT)
User-agent: Alpine 2.22 (DEB 394 2020-01-19)

On Mon, 18 Oct 2021, tolugboji via wrote:

I am using the following command with null record separators for a set of png 
files, and cannot
figure out why only one png file is being printed.

find "$fdir" -type f -name "${fnam}-*.png" -print0 | awk -v RS='\0' -F'[-.]' 
'{print $(NF-1), $0}' | cat -vet

How many files does this find:

find "$fdir" -type f -name "${fnam}-*.png"

--
   Chris F.A. Johnson



reply via email to

[Prev in Thread] Current Thread [Next in Thread]