https://github.com/ozluy/.bash_profile
👨🏻💻 shortcuts for terminal
https://github.com/ozluy/.bash_profile
bash bash-profile command-line personal-terminal-commands shortcuts terminal
Last synced: 2 months ago
JSON representation
👨🏻💻 shortcuts for terminal
- Host: GitHub
- URL: https://github.com/ozluy/.bash_profile
- Owner: ozluy
- Created: 2016-11-14T20:35:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T05:44:17.000Z (about 9 years ago)
- Last Synced: 2025-05-15T14:11:19.339Z (about 1 year ago)
- Topics: bash, bash-profile, command-line, personal-terminal-commands, shortcuts, terminal
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### simple shortcuts
*.bashrc* imports settings from *.bash_profile*, its useful for Visual Studio Code users
#### Color LS
```
colorflag="-G"
alias ls="command ls -a ${colorflag}"
```
####history
```
alias r='reset'
alias clean='reset'
```
#### Git
#### You must install Git first
```
alias gs='git status'
alias ga='git add'
alias gaa='git add *'
alias gc='git commit -m' # requires you to type a commit message
alias gp='git push'
alias gm='git merge' #requires a brach name
alias gr='git reset HEAD'
alias where='echo type "pwd" next time && pwd'
```
# Content
```
alias terminal-reset='reset'
alias terminal-clean='history -c'
alias where='echo type "pwd" next time && pwd'
alias simple-server='python -m SimpleHTTPServer'
alias dr-dev='export ASPNETCORE_ENVIRONMENT=Development && dotnet run'
alias dr-prod='export ASPNETCORE_ENVIRONMENT=Production && dotnet run'
#.Net Core
alias ds='dotnet restore'
alias dr='dotnet run'
```