Golang : Go as a script or running go with shebang/hashbang style
One of the job scope of Unix/Linux system administrator is to write shell scripts to accomplish certain task. However, there are times when the shell scripting language has limited capabilities. Such as establishing secure transport layer or upload files to AWS-S3. With Golang, these can achieved easily and it is easy to use Golang to replace shell scripts.
To execute Golang program as a shell script. Put this line at the top of your code.
//usr/bin/env go run $0 $@; exit
NOTE : For Golang, the line with //
will treated as comment and this is to shut up the compiler. As for the shell executing this script, the //
line will invoke go
command with the name of the file and then exit.
For example :
//usr/bin/env go run $0 $@; exit
package main
import "fmt"
func main() {
fmt.Println("Running as a script!")
}
Next, change the permission of the file to become executable.
chmod a+x hashbang.go
and
>./hashbang.go
Running as a script!
Hope this helps!
Reference :
http://unix.stackexchange.com/questions/162531/shebang-starting-with
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.1k Golang : Qt splash screen with delay example
+18.4k Golang : Send email with attachment
+6.4k Golang : Totalize or add-up an array or slice example
+10.5k Golang : Bubble sort example
+14.7k Golang : Adding XML attributes to xml data or use attribute to differentiate a common tag name
+7.3k Golang : How to convert strange string to JSON with json.MarshalIndent
+12.2k Golang : How to check if a string starts or ends with certain characters or words?
+5.9k Linux/MacOSX : Search for files by filename and extension with find command
+13k Golang : Convert(cast) int to int64
+4.8k Javascript : How to get width and height of a div?
+31.4k Golang : Get local IP and MAC address
+6k Golang : Measure execution time for a function