#!/bin/sh uncompyle () { pycdc "$1" >"$1"_dec } export -f uncompyle find . -type f -name '*.pyc' -exec bash -c 'uncompyle "$0"' {} \;
確定! 回上一頁