#!/usr/bin/env bash if [[ $# -ne 1 ]]; then echo "Usage: $0 " exit 1 fi # Assign the arguments to variables new_key=$1 file_path=./config.yml # Check if the file exists if [[ ! -f "$file_path" ]]; then echo "Creating file: $file_path" # Create the YAML file cat > $file_path <