#!/bin/sh

# Public domain notice for all NCBI EDirect scripts is located at:
# https://www.ncbi.nlm.nih.gov/books/NBK179288/#chapter6.Public_Domain_Notice

# read command-line arguments, create []string slice

echo "[]string{"
while [ $# -gt 0 ]
do
  echo "    \"$1\","
  shift
done
echo "}"
