mirror of
https://github.com/boostorg/beast.git
synced 2026-07-06 08:21:01 +02:00
6 lines
110 B
Python
6 lines
110 B
Python
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Remove all the compiled .pyc files at or below this directory.
|
||
|
|
|
||
|
|
find . -name \*.pyc | xargs rm
|