#!/bin/sh set -e CSS="bahunya site" ext="css" if [ -n "$ZS_PRODUCTION" ]; then ext="min.css" fi for css in $CSS; do printf "\n" "$css" "$ext" done