mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 11:30:19 +01:00
6 lines
169 B
Bash
Executable File
6 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
# remove ~, pyc, pyo files from current directory
|
|
find . -name \*~ -exec rm '{}' ';'
|
|
find . -name \*pyc -exec rm '{}' ';'
|
|
find . -name \*pyo -exec rm '{}' ';'
|