elixir/projects/dpdk.sh
Michael Opdenacker 5aa02b785f Definitions for the DPDK project
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
2019-09-28 07:24:23 +02:00

14 lines
285 B
Bash

# Elixir definitions for DPDK
list_tags_h()
{
echo "$tags" |
grep -vE '^v1\.|^v2\.' |
tac |
sed -r 's/^v([0-9]*)\.([0-9]*)(.*)$/v\1 v\1.\2 v\1.\2\3/'
echo "$tags" |
grep -E '^v1\.|^v2\.' |
tac |
sed -r 's/^v(1|2)\.([0-9])(.*)$/old v\1.\2 v\1.\2\3/'
}