this post was submitted on 11 Jul 2024
54 points (95.0% liked)

Linux

46734 readers
2430 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I wanted to have a separate laptop where I only use the terminal for my use cases. At the moment I am somewhat confident using the terminal, but I think limiting myself to tty only would build my confidence even more. Any tips?

EDIT: I am already using nvim and I already have installed a minimal distro (Arch). I just need advice on how to actually run this system effectively.

you are viewing a single comment's thread
view the rest of the comments
[–] gronjo45@lemm.ee 4 points 1 month ago (4 children)

Amazing post! I’ve been wanting to do the same… Have you found a CLI .csv file editor? One of the points of friction for me is finding how to replace Excel’s functionality past Libreoffice. I’m more curious to see what that workflow can do when one uses no GUI whatsoever.

[–] theshyprisoner@lemmy.ml 3 points 1 month ago (1 children)

I've found sc-im to be very useful, but I'm still a little new to it. Visidata is another one that seems to be a lot more powerful than sc-im.

[–] Hule@lemmy.world 2 points 1 month ago

I have used sc-im a few times, I like the simplicity and vim shortcuts.

Thanks for mentioning visidata, I'll install it.

[–] steeznson@lemmy.world 2 points 1 month ago

csv-mode on emacs

[–] ctr1@fl0w.cc 2 points 1 month ago

If you want to mess around with scripting instead of an editor I would recommend Awk- it works great for CSV files and is really powerful. Usually you can use -F, to separate using commas, but for full CSV support (with potential quoted commas) you need to use something like -vFPAT='[^,]*|"[^"]*"' (which isn't POSIX compliant but works with gawk)

[–] NotAnArdvark@lemmy.ca 1 points 1 month ago

VisiData may do what you want.