Showing 3 Result(s)
Golang

Go Installation at macOS Platform

Go is a statically typed, compiled programming language designed at Google by Robert Griesemer, Rob Pike, and Ken Thompson. Go is syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency. The language is often referred to as Golang because of its former domain name, golang.org, but the proper name …

Create file with TimeStamp in Shell Script

I love using Ubuntu OS for development. I need to create a shell script that saves new file with a timestamp. Following are steps that I’ve followed: Understanding date command. nishant@nishantvaity:~$ date Wed Sep 18 13:53:49 IST 2019 Use any of following command to know options for date command. nishant@nishantvaity:~$ date –h OR nishant@nishantvaity:~$ man …