From 0da5cf83ae342035638ae9063554e01425c73910 Mon Sep 17 00:00:00 2001 From: Iurii Tatishchev Date: Fri, 23 Sep 2022 22:15:23 -0700 Subject: [PATCH] rbw-client.sh | get rid of bash specific code --- contrib/rbw-client.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/rbw-client.sh b/contrib/rbw-client.sh index 2a0baf9..547c656 100755 --- a/contrib/rbw-client.sh +++ b/contrib/rbw-client.sh @@ -1,8 +1,8 @@ -#!/usr/bin/env bash +#!/bin/sh # https://stackoverflow.com/questions/192249/how-do-i-parse-command-line-arguments-in-bash -while [[ $# -gt 0 ]]; do +while [ $# -gt 0 ]; do case $1 in --vault-id) vault_id="$2"