CLI Tools: Difference between revisions
From charlesreid1
(Created page with "Nice article on CLI tools: https://remysharp.com/2018/08/23/cli-improved bat prettyping htop (not crappy top!) - color coding, keyboard bindings P = sort by cpu M = sort...") |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 7: | Line 7: | ||
htop (not crappy top!) - color coding, keyboard bindings | htop (not crappy top!) - color coding, keyboard bindings | ||
P = sort by cpu | * P = sort by cpu | ||
* M = sort by memory | |||
* F4 = filter process by string (filter) | |||
* Space = mark single process | |||
diff-so-fancy - also ad the following to .gitconfig: | |||
<pre> | |||
[pager] | |||
diff = diff-so-fancy | less --tabs=1,5 -RFX | |||
show = diff-so-fancy | less --tabs=1,5 -RFX | |||
</pre> | |||
Latest revision as of 00:49, 16 November 2018
Nice article on CLI tools: https://remysharp.com/2018/08/23/cli-improved
bat
prettyping
htop (not crappy top!) - color coding, keyboard bindings
- P = sort by cpu
- M = sort by memory
- F4 = filter process by string (filter)
- Space = mark single process
diff-so-fancy - also ad the following to .gitconfig:
[pager]
diff = diff-so-fancy | less --tabs=1,5 -RFX
show = diff-so-fancy | less --tabs=1,5 -RFX