I have a Scripts folder where I keep Automator actions, Applescripts, and shell scripts. Automator scripts are automatically assigned a version of 1.1.1 it seems. When I make revisions to any of these kinds of documents, how can I manually set the versions so that info will display in the finder, either with Get Info or in a folder list with Version view enabled?
Especially in the case of shell scripts (zsh), is there a comment format where I can enter the version of the script and Finder will see it? Or is there a way to associate an editable system resource to the scripts that will make the script version visible?
Contents > Info.plist, with<key>CFBundleShortVersionString</key> <string>1.1.1</string>; this can be manually changed if for some reason you want to use a version number different from what Automator has assigned. But to set the Finder version info for a shell script would be extremely unwieldy or impractical, probably involving making a phony application bundle for Finder to look at. I was hoping it would be as easy as usingxattrsomehow. – Elliott Feb 16 at 1:32