From: Alexander Wirt Date: Sat, 6 Oct 2007 22:21:36 +0000 (+0200) Subject: better example for 'Show me all the .c files for which there doesn't exist a .o' X-Git-Tag: 0.7.0~1 X-Git-Url: http://git.grml.org/?p=zsh-lovers.git;a=commitdiff_plain;h=45131d247c34e18cc4ca4f7387a247c6c0c6cc77 better example for 'Show me all the .c files for which there doesn't exist a .o' --- diff --git a/zsh-lovers.1.txt b/zsh-lovers.1.txt index fea037f..7394eee 100644 --- a/zsh-lovers.1.txt +++ b/zsh-lovers.1.txt @@ -221,7 +221,7 @@ See ``man 1 zshexpn | less -p'' Qualifiers for details. fi # Show me all the .c files for which there doesn't exist a .o file. - $ c=(*.c) o=(*.o(N)) eval 'ls ${${c:#(${~${(j:|:)${o:r}}}).c}:?done}' + $ print *.c(e_'[[ ! -e $REPLY:r.o ]]'_) # All files in /var/ that are not owned by root $ ls -ld /var/*(^u:root)