script-collection icon indicating copy to clipboard operation
script-collection copied to clipboard

Collection of my scripts ranging from bash or python or shell. Readme will contain list of which script does what.

Results 1 script-collection issues
Sort by recently updated
recently updated
newest added

# go create main.go ``` import "net/http" func main() { http.ListenAndServe(":8000", http.FileServer(http.Dir("."))) } > go run main.go ``` # caddy ` $ caddy -port 8000 ` # gocommand ` gommand...