mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-20 00:21:21 +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}'
|