1#!/usr/bin/env sh 2# 3# see https://github.com/codespell-project/codespell 4# 5# in short: 6# - pip install codespell 7# - add ~/.local/bin to PATH 8 9codespell $* -L "tim" `git ls-files|egrep -v '_fuzzer.in|_fuzzer.repro|^list$'` 10