๐Ÿ“ฆ rustdesk / rustdesk-server-pro

Some scripts for RustDesk Server Pro are hosted here.

โ˜… 257 stars โ‘‚ 106 forks ๐Ÿ‘ 257 watching
๐Ÿ“ฅ Clone https://github.com/rustdesk/rustdesk-server-pro.git
HTTPS git clone https://github.com/rustdesk/rustdesk-server-pro.git
SSH git clone git@github.com:rustdesk/rustdesk-server-pro.git
CLI gh repo clone rustdesk/rustdesk-server-pro
RustDesk RustDesk Update update.sh a25002a 1 months ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .github
๐Ÿ“„ convertfromos.sh
๐Ÿ“„ install.sh
๐Ÿ“„ lib.sh
๐Ÿ“„ README.md
๐Ÿ“„ SLA.md
๐Ÿ“„ terms
๐Ÿ“„ uninstall.sh
๐Ÿ“„ update.sh
๐Ÿ“„ README.md

RustDesk Server PRO

Here we have a small collection of some scripts for RustDesk Server Pro.

If you are looking for the open source version please go to RustDesk Server

Contributing to this repo

You are very welcome to add your PR to improve the current scripts. Some pointers:

The lib file

The lib.sh is used to avoid duplicate code. Here we collect everything that occurs more than once in the varoius scripts. That could be both functions() and $variables.

Indentation

We always use four (4) spaces, not one (1) tab. Please see below for examples.

IF arguments and functions

The current style is to use it like this:

if something
then
    do something
fi
Not like:
if something; then
    do something
fi

Same applies for functions:

examplefuntion() {
    if something
    then
        do something
    fi
}

Variables

Variables are always written in CAPITAL LETTERS.

EXAMPLEVARIABLE=true