Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clean_orig.sh « tools - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4a5b71b4050d98eea46b603c51321a7ef2d21d3 (plain)
1
2
3
4
#!/bin/bash
find . -iname '*.orig' -exec rm '{}' ';'
find . -iname '*~' -exec rm '{}' ';'
find . -iname '#*#' -exec rm '{}' ';'