mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 14:21:14 +00:00
8 lines
110 B
Bash
8 lines
110 B
Bash
#! /bin/bash
|
|
set -euo pipefail
|
|
|
|
GLIDE=$1
|
|
LIB=$2
|
|
|
|
cat $GLIDE | grep -A1 $LIB | grep -v $LIB | awk '{print $2}'
|