[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 --
skip_output:
  - meta           # Skips lefthook version printing
  - summary        # Skips summary block (successful and failed steps) printing
  - empty_summary  # Skips summary heading when there are no steps to run
  - success        # Skips successful steps printing
  - failure        # Skips failed steps printing
  - execution_info # Skips printing `EXECUTE > ...` logging
  - skips

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

-- 1.txt --
1.txt

-- 10.txt --
10.txt

-- 20.txt --
20.txt
