I'm creating a system that works online, the user logs in and will have access to a terminal which can execute only the commands allowed on the server. The question is this:
The user will have to execute a script in Python and pass parameters, so he would have to give the command:
python arquivo.py arg1 arg2 arg3
I would like to hide the Python command, I know that I can configure the Bash file by adding Alias and at the moment I have already configured it:
alias executarArquivo='python arquivo.py arg1 arg2 arg3'
But it does not work.