From dfa598a7dd283a58d55d278758c97f4d1d426f22 Mon Sep 17 00:00:00 2001 From: Joerg Woelke Date: Tue, 18 Aug 2009 18:27:46 +0200 Subject: [PATCH] zshrc: lsx should list all executables. Make lsx list all executable files instead of only the ten first of an alphabetically sorted list of executables. Acked-by: Frank Terbeck Acked-by: Michael Prokop --- etc/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index eefb29d..55d92ff 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3102,7 +3102,7 @@ alias lss='ls -l *(s,S,t)' # only files with setgid/setuid/sticky fl #a2# Only show 1st ten symlinks alias lsl='ls -l *(@[1,10])' # only symlinks #a2# Display only executables -alias lsx='ls -l *(*[1,10])' # only executables +alias lsx='ls -l *(*)' # only executables #a2# Display world-{readable,writable,executable} files alias lsw='ls -ld *(R,W,X.^ND/)' # world-{readable,writable,executable} files #a2# Display the ten biggest files -- 2.1.4