1
0
This repository has been archived on 2025-01-10. You can view files and clone it. You cannot open issues, pull requests or push a commit.
Files
Anderson Luiz Alves 0464e230c1 stock 103961
2017-07-30 16:48:04 -03:00

19 lines
232 B
Bash
Executable File

#!/bin/sh
# Parse all vendor options
while [ "${1:-}" != "" ]
do
local code=${1:-}
shift 1
local value=${1:-}
shift 1
# Code 1 : ACS URL
if [ "$code" = "1" ]; then
if [ "$value" != "" ]; then
echo $value
fi
fi
done