You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
601 B

package main
import (
"io/ioutil"
"os"
"strings"
"github.com/01-edu/public/go/tests/lib"
)
func main() {
file1 := "quest8.txt"
file2 := "quest8T.txt"
if err := ioutil.WriteFile(file1, []byte(lib.RandWords()+"\n"), os.ModePerm); err != nil {
panic(err)
}
if err := ioutil.WriteFile(file2, []byte(lib.RandWords()+"\n"), os.ModePerm); err != nil {
panic(err)
}
table := []string{file1, file1 + " " + file2, "asd", "", file1 + " abc", "abc " + file2}
for _, s := range table {
lib.ChallengeMain("cat", strings.Fields(s)...)
}
lib.ChallengeMainStdin("cat", lib.RandWords()+"\n")
}