13 lines
267 B
Python
13 lines
267 B
Python
# -*- coding: UTF-8 -*-
|
|
from ead2.backend.actions.lib.main import Cmd
|
|
|
|
class Cmd_Ls(Cmd):
|
|
"""
|
|
Action du mode commande
|
|
"""
|
|
name = "cmd_ls"
|
|
# propriété de la commande à exécuter
|
|
cmd_template = "/bin/ls /tmp"
|
|
cmd_libelle = "ls sur /tmp"
|
|
|