aboutsummaryrefslogtreecommitdiffstats
path: root/coverity/get_token.sh
blob: c44fde0d27133c0b5e1e85c0a9e5c078cf5596c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# Usage:
#   get_token.sh ../tokens.txt my-project
#
# Look for coverity token in a text file.
# Text file lines must be of this format:
# <token><single-space><project>
# 
# e.g.
#
# a3Ksd02nfa-Lk28f_cAk3F Osmocom
# b8sdJA_sd43fLS3-2vL24g Another-token
# ...

tokens_file="$1"
project="$2"
grep " $project\$" "$tokens_file" | sed 's/ .*//'