Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gianlucatruda/linux-setup
Some quick setup files for basic Linux sessions (e.g. AWS instances / virtual machines / Raspberry Pis)
https://github.com/gianlucatruda/linux-setup
Last synced: 7 days ago
JSON representation
Some quick setup files for basic Linux sessions (e.g. AWS instances / virtual machines / Raspberry Pis)
- Host: GitHub
- URL: https://github.com/gianlucatruda/linux-setup
- Owner: gianlucatruda
- Created: 2019-02-11T22:36:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-16T07:58:52.000Z (almost 6 years ago)
- Last Synced: 2024-12-06T19:11:31.204Z (16 days ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linux Setup Files
Some quick setup files for basic Linux sessions (e.g. AWS instances / virtual machines / Raspberry Pis)
## Add this to .bash_profile
```bash
# Load aliases
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fiif [ -f ~/.bash_prompt ]; then
. ~/.bash_prompt
fi# Enable tab completion for `g` by marking it as an alias for `git`
if type _git &> /dev/null && [ -f ~/.git-completion.bash ]; then
complete -o default -o nospace -F _git g;
fi;```