Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
9 lines (8 sloc) 164 Bytes
# -*- mode: snippet -*-
# name: loop-file-lines
# key: loop-file-lines
# binding: direct-keybinding
# --
while read -r $1 || [[ -n "\$$1" ]]; do
$0
done < "$2"