mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
6 lines
73 B
Bash
6 lines
73 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for file in $(cat clint-files.txt); do
|
||
|
./clint.py $file
|
||
|
done
|