Skip to content

Instantly share code, notes, and snippets.

@flosse
Last active December 6, 2019 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flosse/7065f08db54360f265b714506a4c22f9 to your computer and use it in GitHub Desktop.
Save flosse/7065f08db54360f265b714506a4c22f9 to your computer and use it in GitHub Desktop.
#!/bin/bash
for f in `find spec/ -type f -iname \*.rs`
do
awk -i inplace '{print "// TODO: " $0}' $f
git add $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment