11 lines
254 B
Python
11 lines
254 B
Python
|
import circuitos
|
||
|
|
||
|
class App(circuitos.App):
|
||
|
def F_main(self):
|
||
|
apps = self.os.apps
|
||
|
for pid, app in apps.items():
|
||
|
args = app.argv[1:]
|
||
|
name = app.name
|
||
|
print(f'{pid} {name} {args}')
|
||
|
self.exit()
|