/ fundamentals / custom_commands.nu
custom_commands.nu
1 def "date info" [] { 2 let day = $in 3 print ($day | format date '%v') 4 print $'.... was a ($day | format date '%A')' 5 print $'.... was day ($day | format date '%j') of the year' 6 } 7 8 '1947-09-15' | date info