computers:tricksandtips
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
computers:tricksandtips [2023/12/01 22:37] – [rsync through tar] david | computers:tricksandtips [2025/05/27 18:27] (current) – [Show Files by Access Time] david | ||
---|---|---|---|
Line 194: | Line 194: | ||
user 0m29.380s | user 0m29.380s | ||
sys | sys | ||
+ | </ | ||
+ | |||
+ | ==== Using tar Compress ==== | ||
+ | |||
+ | === Specific File Types === | ||
+ | |||
+ | < | ||
+ | find / | ||
+ | </ | ||
+ | |||
+ | |||
+ | Add compression | ||
+ | |||
+ | < | ||
+ | find / | ||
</ | </ | ||
====== BIOS Upgrade ====== | ====== BIOS Upgrade ====== | ||
Line 372: | Line 387: | ||
</ | </ | ||
+ | ===== rsync Windoze Files ===== | ||
+ | You need to expand the time stamp difference for Windoze to not re-copy everything; | ||
+ | |||
+ | < | ||
+ | # always have vP for verbose and progress | ||
+ | rsync --modify-window=5 -vPrltD NORMAL THING | ||
+ | # NO LUCK for me like this, but adding this does only check file size | ||
+ | |||
+ | rsync --size-only -vaP FROM/ TO/ | ||
+ | |||
+ | # try this | ||
+ | rsync --size-only -vPrltD # OR remove -t | ||
+ | |||
+ | # doing this on windows backup drive: | ||
+ | rsync --size-only -vPrlD | ||
+ | </ | ||
===== sshd Piping ===== | ===== sshd Piping ===== | ||
Line 696: | Line 727: | ||
# pipe to less if you want to page up / page down have a look (and reverse to so newest at top) q to exit less | # pipe to less if you want to page up / page down have a look (and reverse to so newest at top) q to exit less | ||
find / | find / | ||
+ | |||
+ | # AI suggested this for nice file formatting 2025 | ||
+ | # Alternative using printf for better formatting | ||
+ | find / | ||
+ | |||
</ | </ | ||
+ | ==== Find and Copy Files Between Two Dates ==== | ||
+ | |||
+ | Use **newermt** switch to **find** and copy files that are human readable times / dates from one place to another. | ||
+ | |||
+ | < | ||
+ | find / | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
==== Sort Text File By Second Column ==== | ==== Sort Text File By Second Column ==== | ||
Line 1110: | Line 1156: | ||
* This one converts video to the target format (mkv here) < | * This one converts video to the target format (mkv here) < | ||
youtube-dl -f mkv | youtube-dl -f mkv | ||
+ | </ | ||
+ | |||
+ | ====== MacOs ====== | ||
+ | |||
+ | ===== Scripting ===== | ||
+ | |||
+ | ==== bash ==== | ||
+ | |||
+ | === Files in Order === | ||
+ | |||
+ | Sometimes I have noticed files do not happen in order when doing command line things. | ||
+ | |||
+ | < | ||
+ | ls -v j080_202405* | sort | xargs cat > j080_overnight.jps | ||
</ | </ | ||
computers/tricksandtips.1701470255.txt.gz · Last modified: 2023/12/01 22:37 by david