-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: repair keys in priceFeed upgrade proposal
- Loading branch information
1 parent
7ae1f27
commit dd66a2d
Showing
1 changed file
with
39 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
alias ls='ls -FCG' | ||
alias ll='ls -loG' | ||
alias lt='ll -tro' | ||
function ltt() { ls -ltr $* | tail; } | ||
function lls() { ll $* | sort -n --key=4; } | ||
|
||
function psg() { ps -ex | grep "$@"; } | ||
alias push=pushd | ||
alias pusdh=pushd | ||
alias pu=pushd | ||
alias d=dirs | ||
alias pop=popd | ||
alias po=popd | ||
alias h='history 15' | ||
function hist() { if [ $# == 1 ]; then history | grep $1; else history 30; fi; } | ||
alias grep='grep --color=auto' | ||
alias egrep='egrep --color=auto' | ||
|
||
alias j='jobs -l' | ||
|
||
#function replace() { | ||
# mv upgrade-test-scripts{,-cya} | ||
# ln -s /workspace/upgrade-test-scripts | ||
#} | ||
|
||
# alias start='agd start > chain.log 2>&1 &' | ||
|
||
# type is bash's version of whatis | ||
|
||
export IGNOREEOF=5 | ||
|
||
export PS1='DOCKER \[\033[1;42m\]\W\[\033[0;32m\] \[\033[0m\] \! > ' | ||
|
||
# using xargs | ||
# (find . -name test | grep -v node_ - | xargs -I foo find foo -name \*.js | grep -v bundle- | xargs -I foo grep -n finally foo /dev/null ) | ||
|
||
alias rehash='hash -r' | ||
|
||
export TZ=PST8PDT |