Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@carlynorama
Created September 3, 2020 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlynorama/a50386c66b845a849fcfdcd388016995 to your computer and use it in GitHub Desktop.
Save carlynorama/a50386c66b845a849fcfdcd388016995 to your computer and use it in GitHub Desktop.
What day is it shell script, swift
#!/usr/bin/env swift
import Foundation
var dayString:String {
let dateFormatter = DateFormatter()
dateFormatter.setLocalizedDateFormatFromTemplate("EEEE")
return (dateFormatter.string(from: Date()))
}
print(dayString)
#https://www.raywenderlich.com/5027-scripting-in-swift-writing-a-script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment