this post was submitted on 10 Oct 2023
778 points (93.7% liked)

Memes

45135 readers
1399 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 57 points 11 months ago* (last edited 11 months ago) (3 children)

Terminal has plenty of convenience benefits over GUI as well. For example you can queue up long-running commands to go one after the other, something I didn't realise how useful it was until I was using Linux full time.

I use this one all the time for archiving stuff and moving it from my PC to my file server. Tar archive a folder, generate a checksum, move the new files over to the server, and then delete the original folder:

tar -cvf folder.tar folder && cat folder.tar | sha256sum > folder.tar.sha256 && mv folder.tar folder.tar.sha256 /path/to/remote/file/server/ && rm -rf folder

The && part stops execution if there is any error so the folder is only deleted once everything else is done without issues.

Can't do that with a GUI. Just make sure to proofread before you press enter.

[–] [email protected] 51 points 11 months ago* (last edited 11 months ago) (1 children)

Powershell, released in 2006: Am I a fucking joke to you?

Linux users: Ehhhh, kinda?

[–] [email protected] 8 points 11 months ago

Wsl is proof powershell is a joke

[–] [email protected] 12 points 11 months ago

for this part yes, automated process often better runs on terminal not GUI.

but that terminal is not exclusive to Linux right? and Windows is not always about GUI.

[–] [email protected] 10 points 11 months ago (1 children)

Sha256 doesn't protect your files when bits flip and they are corrupted. If you want that, add a par2 checksum.

[–] [email protected] 3 points 11 months ago

Good advice. Thank you!