Please enable JavaScript.
Coggle requires JavaScript to display documents.
Terminal (grepping & history ($grep rose sonnets.txt | wc
(inspecting…
Terminal
grepping & history
$grep rose sonnets.txt | wc
(inspecting file contents, case-sensitive default)
insanely powerful, combined with Regex
-
-
-
-
-
-
Making directory
-
-
-
-
-
$ cp -r ../text_files (-r: recursive)
$ cp ../text_files/* .
$rm -rf second_directory (recursive and force)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ls .txt; ls -l .txt (list long form)
ls -rtl (long by reverse modification time)
ls all (all include hidden)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
$less:
- quit: q
- row: move down/up
- page: ctrl + F, ctrl + B
- search: $less /rose => next match "n", previous "N"
- G: move end; nG: move line n
- space bar: move forward one page
-
-
-