Jump to content

Command line: Difference between revisions

From wiki.rayhan.com
Created page with "= One-liners = View your most used commands: <code>cat .zsh_history | cut -d ';' -f2 | cut -d ' ' -f1 | sort | uniq -c | sort -n | less</code> = Tools = Manage wifi: <code>nmtui</code>"
 
No edit summary
Line 4: Line 4:


<code>cat .zsh_history | cut -d ';' -f2 | cut -d ' ' -f1 | sort | uniq -c | sort -n | less</code>
<code>cat .zsh_history | cut -d ';' -f2 | cut -d ' ' -f1 | sort | uniq -c | sort -n | less</code>
== Windows ==
Robocopy drive contents to a directory on another drive. "/E /A-:SH" avoids a robocopy bug that makes the destination directory "super hidden", whatever that means.
<code>robocopy H:\ J:\Backup-of-H\ /FFT /R:0 /MIR /E /A-:SH</code>


= Tools =
= Tools =

Revision as of 22:53, 27 October 2025

One-liners

View your most used commands:

cat .zsh_history | cut -d ';' -f2 | cut -d ' ' -f1 | sort | uniq -c | sort -n | less

Windows

Robocopy drive contents to a directory on another drive. "/E /A-:SH" avoids a robocopy bug that makes the destination directory "super hidden", whatever that means. robocopy H:\ J:\Backup-of-H\ /FFT /R:0 /MIR /E /A-:SH

Tools

Manage wifi:

nmtui