mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-30 17:22:13 +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}'
|