Labthrift Labthrift What to buy. What to skip. Why.

Written 29 Aug 2026. This is a how-to, not a product card. Buy links are not tagged yet.

Send leftover-box output into another command

After SSH works, send leftover-box output into another command with | so a long dump does not flood the window. You do not need a file manager app for this.

Ask a leftover-box command what it does already printed a cheat sheet. That cheat sheet can flood. Tonight you only need one more trick: hand what the first leftover-box command printed to a second leftover-box command. The vertical bar | does that. You can keep calling it a pipe. You already saw one: ls --help | less. You are still only looking. The leftover box does not need a desktop, a file manager, or a new mini PC for this one job.

Skip until SSH already works

SSH from the couch should already get you a leftover-box prompt. If you only need the short cheat sheet, that is ask a leftover-box command what it does. If you only need to page a leftover-box file, that is read a leftover-box file one screen at a time. If you only need to park a short line in a file, that is put a short line into a leftover-box file. Skip this whole note if you only need a house share other computers browse. That is a folder the house can open.

What this is

A pipe means "take what the first leftover-box command printed, and hand it to the second." You type the first leftover-box tool, a vertical bar, then the second leftover-box tool. The leftover box never makes a file in the middle. That is the difference from the arrow in put a short line into a leftover-box file. The arrow parks words in a leftover-box file. The bar hands words to another leftover-box command. It is not installing anything. It is not a search of every leftover-box file. That is find a leftover-box file by name.

Page a leftover-box cheat sheet

SSH in. Start with a leftover-box tool you already used. ls is a safe first try:

ls --help | less

You want the same cheat sheet as ask a leftover-box command what it does, one screen at a time. Space turns the page. q leaves. Same keys as read a leftover-box file one screen at a time. The leftover box did not write a new file. It only handed the print to less.

Count a flood without dumping it:

seq 1 80 | wc -l

You want the number 80. seq would have printed eighty lines. The pipe handed them to see how long a leftover-box file is instead. That is the whole first-night trick: first leftover-box command prints, second leftover-box command reads that print.

Useful extras, still looking only

Need only the matching lines from a leftover-box cheat sheet?

ls --help | grep -i color

You want a short handful of lines that mention color. That is find a word in a leftover-box file, but the "file" tonight is the leftover-box print, not a leftover-box path.

Need the first ten of a leftover-box flood?

seq 1 80 | head

You want lines 1 through 10. That is see the start of a leftover-box file on a leftover-box print, not on a leftover-box file.

If the leftover box says command not found for seq, wc, or head, install the usual tools, then try again:

sudo apt install coreutils

Debian and Ubuntu Server usually already have them. That install is not a reason to buy a file manager.

When you are done looking, you do not need to delete anything. This note only prints text.

What this is not

This is not parking leftover-box command print in a leftover-box file. That is save leftover-box output to a file. It is not parking leftover-box words you typed. That is put a short line into a leftover-box file. It is not paging a leftover-box file that already lives on disk. That is read a leftover-box file one screen at a time. It is not the leftover-box cheat sheet by itself. That is ask a leftover-box command what it does. It is not a search for whether the tool exists. That is see where a leftover-box command lives. It is not a house share other computers browse. That is a folder the house can open.

What next

Need the short cheat sheet first? Ask a leftover-box command what it does. Need to page a leftover-box file that already lives on disk? Read a leftover-box file one screen at a time. Need a line count of a leftover-box file? See how long a leftover-box file is. Need only matching leftover-box lines? Find a word in a leftover-box file. Need the first leftover-box lines of a leftover-box file? See the start of a leftover-box file. Need to park leftover-box command print in a leftover-box file? Save leftover-box output to a file. Need leftover-box words you typed, not leftover-box command print? Put a short line into a leftover-box file. When a house job broke, look at the leftover box's own diary: when something broke, look at the leftover-box log. When key login is boring on every computer you use, turn off leftover-box password login once the key works. Keep SSH on the house network: keep the leftover box on the house network. Do not forward port 22.

Skip

Sources

GNU Bash: Pipelines. Debian: bash. Ubuntu: bash. Official pages only. For the login, see SSH from the couch. For the leftover-box cheat sheet, see ask a leftover-box command what it does. For paging a leftover-box file, see read a leftover-box file one screen at a time. For parking a leftover-box line in a leftover-box file, see put a short line into a leftover-box file.

Also on this topic

SSH from the couchType commands on the leftover box from your laptop, on the house network. Password login first. Do not open this to the internet. Ask a leftover-box command what it doesAfter SSH works, ask a leftover-box command what it does with --help so you can read the short cheat sheet without leaving the window. Optional man for the longer page. You do not need a software store for this. Read a leftover-box file one screen at a timeAfter SSH works, open a leftover-box file with less so a long file does not flood the window. Space turns the page. q leaves. You do not need a file viewer app for this. See how long a leftover-box file isAfter SSH works, count leftover-box lines with wc so you know if a dump will flood the window. You do not need a file manager app for this. Find a word in a leftover-box fileAfter SSH works, search a leftover-box file with grep so you see only the matching lines. You do not need a file viewer app for this. Put a short line into a leftover-box fileAfter SSH works, put one short line into a leftover-box file with echo so you do not need to open nano. You do not need a file manager app for this. See where a leftover-box command livesAfter SSH works, ask where a leftover-box command lives with command -v so you know if nano or python is installed before you chase a missing package. You do not need a software store for this. Turn off leftover-box password login once the key worksAfter the laptop key login is boring, tell SSH to stop accepting the leftover-box password. The key is how you get in. A keyboard on the leftover box is the backup now.