Last active
August 25, 2020 02:08
-
-
Save FlintSable/063847c0bbbce4523ac418be7d00ba09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt install xrdp | |
| sudo apt-get update | |
| # Install new packages | |
| sudo apt-get install xrdp xorg | |
| # Add xrdp user to ssl-cert group and reoboot | |
| sudo add user xrdp ssl-cert | |
| sudo reoot | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pipe gets output from one application to another | | |
| # in this case we are using tr | |
| echo my foot | tr mo Tx | |
| echo leet | tr let 137 | |
| # - to underscore | |
| echo leet-leet | tr - _ | |
| echo leet leet | tr " " _ | |
| echo leetleet | tr [:lower] [:upper] | |
| echo fooT | tr [a-z] x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment