[windows] skip

exec git init
exec lefthook install
exec git config user.email "you@example.com"
exec git config user.name "Your Name"

exec lefthook run echo_files

stdout '1.txt 10.txt'

-- lefthook.yml --
output:
  - execution_out

echo_files:
  commands:
    echo:
      files: ls | grep 1
      run: echo {files}

-- 1.txt --
1.txt

-- 10.txt --
10.txt

-- 20.txt --
20.txt
