Skip to content

Instantly share code, notes, and snippets.

@antonfdiaz
antonfdiaz / swiftui_proj.sh
Created August 27, 2025 09:56
Swift UI project creator (to build without Xcode)
#!/bin/bash
echo "----- SwiftUI Project Creator -----"
read -p "Project name: " projname
read -p "Version: " version
read -p "Bundle ID: " bundleid
if [[ -z "$projname" || -z "$version" || -z "$bundleid" ]]; then
echo "Error: All fields must be filled."
exit 1
fi
echo "Creating project..."