mirror of
https://github.com/x-tools-author/x-tools.git
synced 2025-09-15 15:28:40 +08:00
6 lines
105 B
Bash
6 lines
105 B
Bash
#!/bin/bash
|
|
|
|
files=$(git ls-files | grep '\.pri$')
|
|
for file in $files; do
|
|
git rm "$file"
|
|
done |