#!/bin/bash if [[ -z $1 ]]; then echo "Usage: $0 image [name]" exit 1 fi if [[ -z $2 ]]; then 2=$1 fi podman create --name $2 $1 podman start $2