From 7d3def6f6cdcb58c6d00973a5d68a83e62f856ab Mon Sep 17 00:00:00 2001 From: Josh Patra <30350506+SoPat712@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:48:15 -0400 Subject: [PATCH] cat cmd reordered --- src/routes/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 8af3f99..8879d6d 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -231,7 +231,7 @@ const cmd = currentCommand.toLowerCase().trim(); if (cmd === "help") { - output = `Available commands:\n- help: Show this help\n- clear: Clear terminal\n- whoami: Display name\n- ls: List sections\n- cat [section]: View section (projects, experience, education, achievements, skills)\n- contact: Display contact info`; + output = `Available commands:\n- help: Show this help\n- clear: Clear terminal\n- whoami: Display name\n- ls: List sections\n- cat [section]: View section (projects, education, achievements, experience, skills)\n- contact: Display contact info`; } else if (cmd === "clear") { terminalHistory = []; currentCommand = "";