8 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/busybox sh
 | |
| 
 | |
| # shellcheck disable=SC3060
 | |
| for f in "$@"; do
 | |
|   decompyle3 "$f" > "${f//.pyc}.decompyle3.py"
 | |
|   pycdc "$f" > "${f//.pyc}.pycdc.py"
 | |
|   unpyc3 "$f" > "${f//.pyc}.unpyc3.py"
 | |
| done
 |