-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update l alias. Added server alias for composer server:...
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,17 @@ alias cls='clear' # Good 'ol Clear Screen command | |
alias ssh="assh wrapper ssh --" # assh wrapper | ||
alias ..='cd ..' | ||
alias composer="ssh -T [email protected] > /dev/null 2>&1 ; ssh -T [email protected] > /dev/null 2>&1 ; `brew --prefix`/bin/composer" | ||
alias l='exa --long --header --git' | ||
alias l='ls -la' | ||
alias start='composer server:start' | ||
alias stop='composer server:stop' | ||
alias stopremove='composer server:stop --remove --skip-proxy' | ||
alias mysqladmin='/opt/homebrew/opt/mysql/bin/mysqladmin' | ||
|
||
# Alias `server <command>` to `composer server:<command>`. | ||
server() { | ||
composer server:$@ | ||
} | ||
|
||
#alias pygmy='pygmy-go' | ||
|
||
mockup() { | ||
|