Files
doom/snippets/eshell-mode/for

4 lines
80 B
Plaintext
Raw Normal View History

2025-11-16 15:47:31 +11:00
#name : Eshell for loop
#key : for
# --
for f in ${1:*} { ${2:echo} "$f"; $3} $0