Skip to content

Commit a6eafcd

Browse files
committed
update commands
1 parent 584ab2d commit a6eafcd

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

config/commands.js

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -153,19 +153,17 @@ const commands = {
153153
},
154154

155155
banner: function () {
156-
term.writeln("");
156+
term.writeln("");
157157
if (term.printLogoType) {
158158
term.printLogoType();
159159
} else {
160160
term.writeln(term.cols >= 40 ? LOGO_TYPE : "[Epsilon CLI]\r\n");
161161
}
162162
},
163-
164-
165163

166164
secret: function () {
167-
term.stylePrint("shh... you found a secret 🕵️");
168-
term.openURL("https://i.imgur.com/Q2Unw.gif");
165+
term.stylePrint("shh... you found a secret");
166+
term.openURL("https://users.ece.cmu.edu/~gamvrosi/thelastq.html");
169167
},
170168

171169
email: function () {
@@ -263,7 +261,7 @@ const commands = {
263261
term.stylePrint(`No such file: ${filename}`);
264262
}
265263
if (filename == "id_rsa") {
266-
term.openURL("https://i.imgur.com/Q2Unw.gif");
264+
term.openURL("https://youtu.be/dQw4w9WgXcQ?si=v6gpumClZDQc87zn");
267265
}
268266
},
269267

@@ -272,11 +270,11 @@ const commands = {
272270
const filename = args[1];
273271

274272
if (filename == "id_rsa") {
275-
term.openURL("https://i.imgur.com/Q2Unw.gif");
273+
term.openURL("https://youtu.be/dQw4w9WgXcQ?si=v6gpumClZDQc87zn");
276274
}
277275

278276
if (!q || !filename) {
279-
term.stylePrint("usage: %grep% [pattern] [filename]");
277+
term.stylePrint("usage: %grep% <pattern> <file>");
280278
return;
281279
}
282280

@@ -352,7 +350,7 @@ const commands = {
352350
args[0].split(".")[0] == "test" &&
353351
args[0].split(".")[1] == "htm"
354352
) {
355-
term.openURL("https://i.imgur.com/Q2Unw.gif");
353+
term.openURL("https://youtu.be/dQw4w9WgXcQ?si=v6gpumClZDQc87zn");
356354
} else if (args[0].split(".")[1] == "htm") {
357355
term.openURL(`./${args[0]}`, false);
358356
} else if (args.join(" ") == "the pod bay doors") {

0 commit comments

Comments
 (0)