This repository has been archived on 2026-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
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