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.

Save leftover-box output to a file

After SSH works, save leftover-box command output to a file with > so you can read it later. You do not need a file manager app for this.

Send leftover-box output into another command handed what the first leftover-box command printed to a second leftover-box tool. Tonight you only need one more trick: park that print in a leftover-box file. The single arrow > does that. You can keep calling it "save this." You are still only writing a practice file in home. 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 to hand what one leftover-box command printed to another leftover-box tool, that is send leftover-box output into another command. If you only need to park words you typed, that is put a short line into a leftover-box file. If you only need to page a leftover-box file that already lives on disk, that is read a leftover-box file one screen at a time. 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

The single arrow > means "put what this leftover-box command printed into this leftover-box file." You type the leftover-box tool, then the arrow, then a leftover-box path. The leftover box writes that print to the leftover-box file, and the window stays quiet. The single arrow replaces whatever was already in that leftover-box file. The double arrow >> adds at the end. That is the difference from the leftover-box bar in send leftover-box output into another command. The bar hands the print to another leftover-box command. The arrow parks it in a leftover-box file. It is not words you typed. That is put a short line into a leftover-box file. It is not an editor. That is edit a leftover-box file from the couch.

Save a leftover-box list in home

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

ls > ~/names.txt

The tilde ~ is a short name for your home folder. The window stays quiet. That quiet is the leftover box writing the leftover-box list into names.txt. If that leftover-box file already had words, they are gone. That is the whole first-night trick for a leftover-box print you want to keep.

Then peek without opening the editor:

cat ~/names.txt

You want the leftover-box folder names, one per line. That is the leftover-box list, parked. That is enough for tonight.

Useful extras, still writing only

Need a few extra leftover-box lines parked too? Add them at the end with the double arrow:

seq 1 5 >> ~/names.txt

cat ~/names.txt

You want the leftover-box folder names, then 1 through 5. The double arrow >> means "add at the end." The leftover-box list you saved first is still there.

Need only matching leftover-box lines parked?

ls --help | grep -i color > ~/help-color.txt

You want a short leftover-box file of leftover-box cheat-sheet lines that mention color. The leftover-box bar hands the print to find a word in a leftover-box file. The leftover-box arrow parks that handful. Night one can mix one leftover-box bar and one leftover-box arrow when the leftover-box arrow is last.

If the leftover box says command not found for ls, seq, or cat, 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 practicing:

rm -i ~/names.txt

Say yes only if that leftover-box file is the leftover-box practice list. If you also made help-color.txt, delete that leftover-box file the same way.

What this is not

This is not parking leftover-box words you typed. That is put a short line into a leftover-box file. It is not handing leftover-box print to another leftover-box command. That is send leftover-box output into another command. 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 an editor for several leftover-box lines. That is edit a leftover-box file from the couch. It is not a leftover-box copy of a leftover-box file that already exists. That is copy a leftover-box file without leaving the box. It is not a house share other computers browse. That is a folder the house can open.

What next

Need to watch leftover-box print and keep a leftover-box copy at once? Watch and save leftover-box output at once. Need to hand leftover-box print to another leftover-box tool instead of parking it? Send leftover-box output into another command. Need leftover-box words you typed, not leftover-box command print? Put a short line into a leftover-box file. Need a short dump of the leftover-box file you just saved? Read a leftover-box file without opening the editor. Need to page a leftover-box file that got long? Read a leftover-box file one screen at a time. Need only matching leftover-box lines first? Find a word in a leftover-box file. Need a line count of the leftover-box file you saved? See how long a leftover-box file is. Need the leftover-box throwaway gone for real? Delete a leftover-box file carefully. 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: Redirecting Output. GNU Bash: Appending Redirected Output. Debian: bash. Ubuntu: bash. Official pages only. For the login, see SSH from the couch. For handing leftover-box print to another leftover-box command, see send leftover-box output into another command. For leftover-box words you typed, see put a short line into a leftover-box file. For a leftover-box dump after you save, see read a leftover-box file without opening the editor.

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. Send leftover-box output into another commandAfter 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. 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. Read a leftover-box file without opening the editorAfter SSH works, print a leftover-box file with cat so you can read it without opening nano. Short files only. You do not need a file viewer app 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. 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. 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. 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.