Skip to content

Instantly share code, notes, and snippets.

@EzequielBruni
Created February 1, 2022 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EzequielBruni/0e29f2c0a63500baf6fe9e8c51c7b02f to your computer and use it in GitHub Desktop.
Save EzequielBruni/0e29f2c0a63500baf6fe9e8c51c7b02f to your computer and use it in GitHub Desktop.
A simple script to install the Micro text editor on Rocky Linux, without snap.
#!/bin/bash
# Make sure tar is installed (it's not in some container images).
sudo dnf install tar -y
# Install micro
curl https://getmic.ro | bash
# Move micro from the current directory to /usr/bin for a proper system-wide installation.
sudo mv micro /usr/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment