We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tee
1 parent 58bf163 commit 4efa311Copy full SHA for 4efa311
packages/web-host/src/hooks/exampleCommands.ts
@@ -41,6 +41,16 @@ const commands = [
41
() => ls("data/processed/2024"),
42
() => ls("documents"),
43
() => cat("documents/config.json"),
44
+ "echo We can also write to files! 🔥",
45
+ "tee output.txt",
46
+ "cat output.txt",
47
+ "echo We can write to files in append mode!",
48
+ "tee -a output.txt",
49
+ "echo Some more text",
50
51
+ "echo Even more text",
52
53
54
"weather Paris",
55
"man weather",
56
"help",
0 commit comments