Created
December 31, 2021 09:12
-
-
Save dapize/e1a518ee8fa91db751aba102359ce7af to your computer and use it in GitHub Desktop.
Add the command 'open' for the terminal in Linux mint
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
| #!/bin/bash | |
| echo "alias open='gio open'" >> ~/.bashrc | |
| source ~/.bashrc | |
| # now for test lets go to a folder and type: | |
| # open . | |
| # and press ENTER, and the folder will be opened |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment