This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/osascript | |
| on run argv | |
| set theFilePath to POSIX file (item 1 of argv) | |
| set theFolder to theFilePath as alias | |
| set exportName to (theFolder as text) | |
| set exportName to exportName's text 1 thru -5 | |
| set exportName to (exportName & ".xlsx") |