Skip to content

Instantly share code, notes, and snippets.

@FlintSable
Last active August 25, 2020 02:08
Show Gist options
  • Select an option

  • Save FlintSable/063847c0bbbce4523ac418be7d00ba09 to your computer and use it in GitHub Desktop.

Select an option

Save FlintSable/063847c0bbbce4523ac418be7d00ba09 to your computer and use it in GitHub Desktop.
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
# 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