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

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

Watch and save leftover-box output at once

After SSH works, watch leftover-box command output and save it at the same time with tee. You do not need a file manager app for this.

Send leftover-box output into another command handed print to a second tool. Save leftover-box output to a file parked that print in a leftover-box file, but the window went quiet. Tonight you only need one more trick: see the leftover-box print and keep a leftover-box copy. tee does both. 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 to hand leftover-box print to another leftover-box tool, that is send leftover-box output into another command. If you only need a quiet leftover-box file and do not care about the window, that is save leftover-box output to a file. If you only need leftover-box words you typed, 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

tee means "show me the leftover-box print, and also write a leftover-box copy." You type a leftover-box tool, a vertical bar, then tee and a leftover-box file name. The leftover box prints the same lines in your window and parks them in that leftover-box file. It is the leftover-box bar from send leftover-box output into another command plus the leftover-box save from save leftover-box output to a file, in one step. It is not installing anything. It is not a second leftover-box computer watching the first.

Watch a practice dump and keep a copy

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

ls > ~/names.txt

That quiet save is save leftover-box output to a file. The window stayed blank. Now try the same leftover-box list with a leftover-box copy you can watch:

ls | tee ~/names-tee.txt

You want the folder names on screen, same as a plain ls. Then peek at the leftover-box copy:

cat ~/names-tee.txt

You want the same names again. That is the whole first-night trick: leftover-box print in the window, leftover-box copy on disk.

Try a short numbered flood next:

seq 1 20 | tee ~/numbers.txt

You want lines 1 through 20 on screen. Then:

wc -l ~/numbers.txt

You want 20. The leftover-box file kept every line you just watched.

Useful extras, still looking only

Need to add to a leftover-box file you already started, without wiping it?

seq 21 30 | tee -a ~/numbers.txt

You want lines 21 through 30 on screen. -a means append, same idea as >> in save leftover-box output to a file. Then:

tail ~/numbers.txt

You want the new leftover-box lines at the end. That is see the end of a leftover-box file.

Need the leftover-box cheat sheet on screen and in a leftover-box file?

ls --help | tee ~/ls-help.txt | less

You want the cheat sheet one screen at a time. Space turns the page. q leaves. The leftover-box file still has the full cheat sheet when you leave. That is leftover-box tee into leftover-box less. Paging alone is read a leftover-box file one screen at a time.

If the leftover box says command not found for tee or seq, 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, throw away the leftover-box practice files:

rm ~/names-tee.txt ~/numbers.txt ~/ls-help.txt

Careful delete only. That is delete a leftover-box file carefully.

What this is not

This is not a quiet leftover-box save with a blank window. That is save leftover-box output to a file. It is not handing leftover-box print to another leftover-box tool without a leftover-box file. That is send leftover-box output into another command. It is not leftover-box words you typed. That is put a short line into a leftover-box file. It is not the leftover-box editor. That is edit a leftover-box file from the couch. It is not a house share other computers browse. That is a folder the house can open.

What next

Need a quiet leftover-box save with no leftover-box print in the window? Save leftover-box output to a file. Need to hand leftover-box print to another leftover-box tool without a leftover-box file? Send leftover-box output into another command. Need leftover-box words you typed? 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 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. Need leftover-box lines in A-to-Z order? Put leftover-box lines in order. Need each leftover-box line only once after leftover-box order? Drop leftover-box duplicate lines. 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 coreutils: tee invocation. Debian: tee. Ubuntu: tee. 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 a quiet leftover-box save, see save leftover-box output to a file. For leftover-box words you typed, 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. 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. Save leftover-box output to a fileAfter 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. 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. 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.