Shell

Incoming

  • pacmux - Tmux plugin to make your status line look as Pac-Man
  • browsh - A fully-modern text-based browser, rendering to TTY and browsers https://www.brow.sh
  • resty - Little command line REST client that you can use in pipelines (bash or zsh).
  • up - Ultimate Plumber is a tool for writing Linux pipes with instant live preview

ASCII art

  • tart - Tart - draw ASCII art in the terminal with your mouse!

Monitoring

  • nvtop - NVIDIA GPUs htop like monitoring tool
  • gotop - A terminal based graphical activity monitor inspired by gtop and vtop

Help / Documentation

BASH

  • bats - Bash Automated Testing System
  • fd - A simple, fast and user-friendly alternative to ‘find’

Execute commands with the result of find

1
find ./ -iname petvnia-*-x86_64.AppImage -exec {} \;

https://linuxaria.com/howto/linux-shell-how-to-use-the-exec-option-in-find-with-examples

Unzip several files at once

1
unzip '*.zip'

Comments

⬆︎TOP