mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 23:32:15 +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}'
|