Skip to content

Exemple

Permissions

Run the installation commands with administrator permission.

  • Input
linuxp install --module package --sudo
  • Command result
sudo apt install python3
sudo apt install python3-pip

Debug

Run the installation commands in test mode. In test mode the commands are not actually executed on the machine, they are just displayed in the terminal.

  • Input
linuxp install --module package --debug
  • Command result
echo 'sudo apt install python3'
echo 'sudo apt install python3-pip'

Group

This command groups the items for executing the command.

  • Input
linuxp install --module package --group
  • Command result
sudo apt install python3 python3-pip

Install Package

Module

Full Command

linuxp install --module package
Short Command
linuxp install -m package

Tag

Full Command

linuxp install --module package --tag util
Short Command
linuxp install -m package -t util

Item

Full Command

linuxp install --module package --tag util --item vim

Short Command

linuxp install -m package -t util -i vim

Install Script

Module

Full Command

linuxp install --module script
Short Command
linuxp install -m script

Tag

Full Command

linuxp install --module script --tag system
Short Command
linuxp install -m script -t system

Item

Full Command

linuxp install --module script --tag system --item clean_my_linux

Short Command

linuxp install -m script -t system -i clean_my_linux

Install Alias

Module

Full Command

linuxp install --module alias
Short Command
linuxp install -m alias

Tag

Full Command

linuxp install --module alias --tag util
Short Command
linuxp install -m alias -t util

Item

Full Command

linuxp install --module alias --tag util --item play_music

Short Command

linuxp install -m alias -t util -i play_music