5 lines
100 B
Bash
Executable file
5 lines
100 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
|
|
version=`pkg-config --modversion libyang`
|
|
echo "$version" | grep '2\.[0-9.]\+'
|