2026-04-15 09:23:27 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
|
|
|
|
|
from ..App import App
|
|
|
|
|
from .Cmd import Cmd as CmdBase
|
|
|
|
|
|
|
|
|
|
class CmdPosix(CmdBase): # export
|
|
|
|
|
|
|
|
|
|
def __init__(self, parent: App) -> None:
|
|
|
|
|
super().__init__(parent, 'posix', help='Perform various operations on a distro through its POSIX utility interface')
|
2026-05-01 10:17:24 +02:00
|
|
|
self.load_subcommands()
|
2026-04-15 09:23:27 +02:00
|
|
|
|
|
|
|
|
def add_arguments(self, p: ArgumentParser) -> None:
|
|
|
|
|
super().add_arguments(p)
|