diff --git a/scripts/convert-mxnetctl-to-udev-rule.go b/scripts/convert-mxnetctl-to-udev-rule.go deleted file mode 100644 index 24c8988b7..000000000 --- a/scripts/convert-mxnetctl-to-udev-rule.go +++ /dev/null @@ -1,28 +0,0 @@ -package main - -import ( - "bufio" - "fmt" - "os" - "strings" -) - -func main() { - // Open the file and scan it. - f, _ := os.Open("/etc/local/mxnet") - scanner := bufio.NewScanner(f) - - for scanner.Scan() { - line := scanner.Text() - - // Split the line on commas. - parts := strings.Split(line, " ") - - // Loop over the parts from the string. - for i := range parts { - fmt.Println(parts[i]) - } - // Write a newline. - fmt.Println() - } -}