Path: blob/master/web-gui/buildyourownbotnet/assets/js/jquery-terminal/files
1293 views
#!/bin/bash find . -type f -not -path './node_modules*' -a -not -path '*.git*' -a -not -path './coverage*' -a -not -path './bower_components*' | while read file; do git check-ignore -q "$file" || echo "$file" done