I'm looking to share a script with someone but am not sure which is preferred on MacOS. Which is best supported?
This?
#!/bin/sh
echo "Here goes my simple script that changes some settings."
# ... do some stuff
Or this?
#!/bin/bash
echo "Here goes my simple script that changes some settings."
# ... do some stuff