5 lines
48 B
Plaintext
5 lines
48 B
Plaintext
|
#!/bin/bash
|
||
|
shopt -s globstar
|
||
|
rm -v ./**/*.pyc
|
||
|
|