Create new file
Open Automator and create new quick action. Drag and drop a Shell Skript from the sidebar into the working area.
- Set the above properties
- Arbeitsablauf empfängt aktuelle(n) Ordner
- in Finder.app
- Fill its content with
basicname="$1/untitled"
count=1
newname=$basicname
while [ -e $newname ]; do
((count++))
newname="$basicname$count"
done
touch "$newname"
- Save as Create new file