projects
/
mmc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4939fbf
)
Place positional parameters first
author
Sergey Matveev <stargrave@stargrave.org>
Fri, 18 Apr 2025 07:55:37 +0000 (10:55 +0300)
committer
Sergey Matveev <stargrave@stargrave.org>
Fri, 18 Apr 2025 07:55:37 +0000 (10:55 +0300)
cmd/emails
patch
|
blob
|
history
diff --git
a/cmd/emails
b/cmd/emails
index d1e1003bddca8d8aaee77d6324c3cb85f5938b54..d8c5724a157ec97b89ef3cf35f58986623839183 100755
(executable)
--- a/
cmd/emails
+++ b/
cmd/emails
@@
-1,5
+1,5
@@
#!/bin/sh -e
-for u in $(find users -
type d -mindepth 1
) ; do
+for u in $(find users -
mindepth 1 -type d
) ; do
printf "%s\t%s\n" "`cat $u/email`" "`cat $u/name`"
done | fzf