You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cheat-sheet.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Creates new file and writes the output of the command as lines of text to the ne
116
116
117
117
For example, `ls > ls.txt` wites the contents of the current directory to a file named ls.txt which it puts in the current directory.
118
118
119
-
`cat > catRedirect.txt` will then write any following lines you type into catRedirect.txt (since executing `cat` by itself repeats back at you whatever you type. That output becomes the input for thr file. Press ctrl+c to exit out of the running `cat` command.
119
+
`cat > catRedirect.txt` will write any following lines you type into catRedirect.txt (since executing `cat` by itself repeats back at you whatever you type). That output becomes the input for thr file. Press ctrl+c to exit out of the running `cat` command.
0 commit comments