Last active
October 14, 2018 05:37
-
-
Save k4ml/ee9129d5dbf7ec06e8115a1d8b127905 to your computer and use it in GitHub Desktop.
Revisions
-
Kamal Mustafa revised this gist
Oct 14, 2018 . 2 changed files with 30 additions and 28 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,28 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ // https://tutorialedge.net/golang/reading-console-input-golang/ package main import ( "bufio" "fmt" "os" "strings" ) func main() { reader := bufio.NewReader(os.Stdin) fmt.Println("Simple Shell") fmt.Println("---------------------") for { fmt.Print("-> ") text, _ := reader.ReadString('\n') // convert CRLF to LF text = strings.Replace(text, "\n", "", -1) if text == "\\q" { os.Exit(0) } if strings.Compare("hi", text) == 0 { fmt.Println("hello, Yourself") } } } -
k4ml created this gist
Oct 14, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ // https://tutorialedge.net/golang/reading-console-input-golang/ import ( "bufio" "fmt" "os" "strings" ) func main() { reader := bufio.NewReader(os.Stdin) fmt.Println("Simple Shell") fmt.Println("---------------------") for { fmt.Print("-> ") text, _ := reader.ReadString('\n') // convert CRLF to LF text = strings.Replace(text, "\n", "", -1) if text == "\\q" { os.Exit(0) } if strings.Compare("hi", text) == 0 { fmt.Println("hello, Yourself") } } }