hamacs/snippets/eshell-mode/for-loop

6 lines
105 B
Text
Raw Normal View History

2023-10-10 15:16:42 +00:00
# -*- mode: snippet -*-
#name : Eshell for loop
#key : for
# --
for f in ${1:*} { ${2:echo} "$f"; $3} $0