From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 From: dexen deVries Date: Fri, 17 Mar 2017 11:20:56 +0100 Message-ID: To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=UTF-8 Subject: [9fans] rc expression question Topicbox-Message-UUID: b7cdc4f6-ead9-11e9-9d60-3106f5b1d025 given pathnames = ( foo/a.txt bar/b.txt baz/c.txt ) how do i construct arguments to test(1) that test for existence of those files in one go? wanted: test -e foo/a.txt -o -e bar/b.txt -o -e baz/c.txt assuming the pathnames may contain space characters.