Mastering the command line is all about those little productivity hacks! ๐Ÿš€

Today's tip: Ever need to run multiple commands *only if* the previous one succeeded? Use `&&`.

Example: `sudo apt update && sudo apt upgrade -y`

This ensures your system only tries to upgrade after a successful update. Super handy for scripting or just chaining quick tasks.

What's your favorite productivity trick in the terminal? Share below! ๐Ÿ‘‡

#Linux #CommandLine #TerminalTips #OpenSource #Productivity

Today I Learned that:
1. Debian's sqlite3 command is deliberately built with readline support turned off
2. You can work around this by using a utility called "rlwrap" - instead of doing "sqlite3 dbname" you do "rlwrap sqlite3 dbname"! And it Just Works!

So now I can go back down in my command history of my sqlite3 interactive session instead of scratching my head as to why the arrow keys don't work any more. (I didn't realise that it was my switch from Ubuntu to Debian which was the cause.)

#Linux #CommandLine #Shell #SQLite

ANN: tjot v0.0.5, a terminal renderer for djot

https://midwest.social/post/29609239

Es gibt ein neues Release von kleingebรคck: Version 0.3.20, bei dem die Abhรคngigkeiten upgedatet wurden.

Mit diesem Tool kann man seine Anzeigen bei kleinanzeigen.de inklusive Fotos auf Platte sichern.

#kleinanzeigen #golang #cli #commandline #linux

https://github.com/TLINDEN/kleingebaeck/releases/tag/v0.3.20

Release v0.3.20 ยท TLINDEN/kleingebaeck

Miscellaneus Changes update dependencies and user agent version (#146) by TLINDEN Full Changelog: v0.3.19...v0.3.20

GitHub

New release of #anydb version 0.2.3, which updates go dependencies.

Anydb is a simple to use commandline tool to store anything you'd like, even binary files etc in a local key-value-store.

#golang #cli #commandline #keyvaluestore #linux

https://github.com/TLINDEN/anydb/releases/tag/v0.2.3

New release of #tablizer version 1.4.3, which updates go dependencies.

Tablizer can be used to re-format tabular output of other programs.

#golang #cli #linux #commandline #tsv

https://github.com/TLINDEN/tablizer/releases/tag/v1.4.3

Simulations in the terminal with Rust & @ratatui_rs ๐Ÿ˜๐Ÿฆ€

๐ŸŒ€ **trmt** โ€” 2D Turing Machine simulator for your terminal!

โ˜˜๏ธ Supports extensive customization, real-time interaction & more!

โญGitHub: https://github.com/cenonym/trmt

#rustlang #ratatui #tui #turmite #turing #simulation #2d #terminal #commandline

Command line stuff like `whoami` in e.g. `squeue -u $(whoami)` or the etymology of the command `less`, are like cave paintings or rude graffiti in Pompeii. Programmers from the past succinctly using humour to convey a purpose.

#CommandLine

Start a terminal with a default "string" in the command line to complete the command in the opened window #commandline #bash

https://askubuntu.com/q/1550385/612

Start a terminal with a default "string" in the command line to complete the command in the opened window

I use Ubuntu Mate 24.04.02 Often I start the terminal with the command : ffmpeg -i And via drag and drop of the video-file in to the terminal I get the information what I want to have. I did use ...

Ask Ubuntu