Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: repair keys in priceFeed upgrade proposal #10362

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions a3p-integration/min.sh
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
Loading