• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2HASH_TAG=$1
3
4if [[ -z "${HASH_TAG}" ]]; then
5  echo "CL hashtag required to search CLs"
6  exit 1
7fi
8
9../../../../chromite/bin/gerrit -i --raw search "owner:me status:open hashtag:${HASH_TAG}" \
10  | xargs echo | sed 's/ /, /g'
11