From 37328ea897c57e7d49f07c83d5f9d5f37a6bf4db Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 5 Feb 2013 13:51:04 -0500 Subject: [PATCH] quizzes: Move quizzes into a subdirectory --- quiz.json => quizzes/monty-python.json | 10 ---------- quizzes/posix-shell.json | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 10 deletions(-) rename quiz.json => quizzes/monty-python.json (71%) create mode 100644 quizzes/posix-shell.json diff --git a/quiz.json b/quizzes/monty-python.json similarity index 71% rename from quiz.json rename to quizzes/monty-python.json index 9f1c902..894105e 100644 --- a/quiz.json +++ b/quizzes/monty-python.json @@ -30,16 +30,6 @@ "dependencies": [ "What is your quest?" ] - }, - { - "class": "ScriptQuestion", - "interpreter": "sh", - "prompt": "list all the files in the current directory", - "answer": "ls", - "setup": [ - "touch file-1 file-2 file-3" - ], - "help": "http://pubs.opengroup.org/onlinepubs/009696699/idx/utilities.html" } ] } diff --git a/quizzes/posix-shell.json b/quizzes/posix-shell.json new file mode 100644 index 0000000..192958c --- /dev/null +++ b/quizzes/posix-shell.json @@ -0,0 +1,15 @@ +{ + "version": "0.1", + "questions": [ + { + "class": "ScriptQuestion", + "interpreter": "sh", + "prompt": "list all the files in the current directory", + "answer": "ls", + "setup": [ + "touch file-1 file-2 file-3" + ], + "help": "http://pubs.opengroup.org/onlinepubs/009696699/idx/utilities.html" + } + ] +} -- 2.26.2