mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# A simple script to get rid of .orig and .rej files left in
|
|
# your repository by svn. It will request confirmation before
|
|
# deleting each file.
|
|
#
|
|
# Tim Sutton, May 2008
|
|
find . -name "*.orig" -exec rm -rf {} \;
|