4 lines
97 B
Bash
4 lines
97 B
Bash
|
#!/bin/sh
|
||
|
find . -perm /111 -type f | sed 's#^./##' | sort > .gitignore
|
||
|
echo "*.c" >> .gitignore
|