You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
12 lines
194 B
Bash
Executable File
12 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
# Checks xpython passes all runnable bytecode here
|
|
|
|
for dir in bytecode_*_run; do
|
|
for file in ${dir}/*.pyc; do
|
|
echo $file
|
|
if ! xpython $file; then
|
|
break
|
|
fi
|
|
done
|
|
done
|