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.

Join leftover-box columns side by side

After SSH works, join leftover-box columns side by side with paste so two leftover-box lists become one leftover-box line each. You do not need a file manager app for this.

Change leftover-box characters kept leftover-box mixed leftover-box lines easier to clean. Pull one leftover-box column kept leftover-box fruit and leftover-box color apart. Tonight you only need one more trick: join leftover-box columns side by side so two leftover-box lists become one leftover-box line each. paste does that. leftover-box fruit can sit next to leftover-box color. leftover-box two leftover-box files become leftover-box one leftover-box line each. 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 leftover-box columns pulled, that is pull one leftover-box column. If you only need leftover-box characters cleaned, that is change leftover-box characters. If you only need leftover-box copies dropped, that is drop leftover-box duplicate lines. If you only need leftover-box lines in A-to-Z order, that is put leftover-box lines in order. If you only need leftover-box print handed to another leftover-box tool, that is send leftover-box output into another command. 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

paste means "join leftover-box columns side by side." You type leftover-box paste, then leftover-box two leftover-box files. leftover-box -d is leftover-box delimiter: the leftover-box character that sits between leftover-box columns. leftover-box default leftover-box join is leftover-box tab. leftover-box comma is leftover-box optional leftover-box join tonight. The leftover box prints leftover-box joined leftover-box lines. It does not rewrite the leftover-box files unless you ask it to. It is not leftover-box columns pulled. That is pull one leftover-box column. It is not leftover-box characters cleaned. That is change leftover-box characters. It is not leftover-box search. That is find a word in a leftover-box file. It is not leftover-box order. That is put leftover-box lines in order. It is not leftover-box copies dropped. That is drop leftover-box duplicate lines. It is not leftover-box first leftover-box lines. That is see the start of a leftover-box file. It is not leftover-box last leftover-box lines. That is see the end of a leftover-box file. It is not leftover-box whole dump. That is read a leftover-box file without opening the editor.

Join leftover-box columns from practice files

SSH in. Make two tiny leftover-box files in leftover-box home:

printf 'apple\nbanana\npear\n' > ~/fruit.txt

printf 'red\nyellow\ngreen\n' > ~/color.txt

That leftover-box save is save leftover-box output to a file. Peek first:

cat ~/fruit.txt

You want apple, then banana, then pear. Peek leftover-box color too:

cat ~/color.txt

You want red, then yellow, then green. Now join leftover-box columns side by side:

paste ~/fruit.txt ~/color.txt

You want apple then leftover-box tab then red, then banana then leftover-box tab then yellow, then pear then leftover-box tab then green. leftover-box default leftover-box join is leftover-box tab. The leftover-box files on disk are still leftover-box two leftover-box lists. That is the whole first-night trick: leftover-box columns joined in a leftover-box window, leftover-box files left alone.

Need leftover-box comma between leftover-box columns?

paste -d, ~/fruit.txt ~/color.txt

You want apple,red, then banana,yellow, then pear,green. leftover-box -d, is leftover-box comma. leftover-box fruit sits next to leftover-box color on leftover-box one leftover-box line each.

Need leftover-box columns joined back after leftover-box cut pulled leftover-box them apart? leftover-box cut can save leftover-box one leftover-box column into a leftover-box file, then leftover-box paste can join leftover-box two leftover-box files. leftover-box night one stays leftover-box two leftover-box simple leftover-box files. leftover-box cut handoff is leftover-box optional. That leftover-box pull is pull one leftover-box column. Skip leftover-box process leftover-box substitution leftover-box tricks on leftover-box night one. leftover-box two leftover-box files are leftover-box enough.

Need leftover-box one leftover-box file squashed onto leftover-box one leftover-box line? leftover-box paste -s does that. Skip leftover-box serial leftover-box paste on leftover-box night one. leftover-box two leftover-box files side by side is leftover-box enough for leftover-box first leftover-box look.

Useful extras, still looking only

Need leftover-box three leftover-box lists joined? leftover-box paste takes leftover-box three leftover-box files the leftover-box same leftover-box way. leftover-box extra leftover-box file is leftover-box optional. leftover-box two leftover-box files are leftover-box enough for leftover-box night one.

Need leftover-box pipe leftover-box between leftover-box columns?

paste -d '|' ~/fruit.txt ~/color.txt

You want apple|red, then banana|yellow, then pear|green. leftover-box -d '|' is leftover-box pipe leftover-box character, not leftover-box command leftover-box bar. leftover-box command leftover-box bar is send leftover-box output into another command.

Skip leftover-box sed, leftover-box awk, leftover-box xargs, and leftover-box join on leftover-box night one. leftover-box join is a different leftover-box tool. leftover-box paste by itself is enough for leftover-box first leftover-box join.

If the leftover box says command not found for paste, 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 ~/fruit.txt ~/color.txt

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

What this is not

This is not leftover-box columns pulled. That is pull one leftover-box column. It is not leftover-box characters cleaned. That is change leftover-box characters. It is not leftover-box search. That is find a word in a leftover-box file. It is not leftover-box order. That is put leftover-box lines in order. It is not leftover-box copies dropped. That is drop leftover-box duplicate lines. It is not handing leftover-box print to another leftover-box tool without leftover-box columns joined. That is send leftover-box output into another command. It is not leftover-box first leftover-box lines. That is see the start of a leftover-box file. It is not leftover-box last leftover-box lines. That is see the end of a leftover-box file. It is not leftover-box whole dump. That is read a leftover-box file without opening the editor. It is not leftover-box words you typed. That is put a short line into a leftover-box file. It is not watching leftover-box print while you save a leftover-box copy. That is watch and save leftover-box output at once. It is not a quiet leftover-box save. That is save leftover-box output to a file. It is not a house share other computers browse. That is a folder the house can open.

What next

Need leftover-box lines numbered so you can point at leftover-box line 3? Number leftover-box lines. Need leftover-box columns pulled first? Pull one leftover-box column. Need leftover-box characters cleaned first? Change leftover-box characters. Need leftover-box copies dropped first? Drop leftover-box duplicate lines. Need leftover-box lines in A-to-Z order? Put leftover-box lines in order. Need leftover-box print handed to another leftover-box tool? Send leftover-box output into another command. Need leftover-box print on screen and in a leftover-box file? Watch and save leftover-box output at once. Need a quiet leftover-box save with no leftover-box print in the window? Save leftover-box output to a file. 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 made? Read a leftover-box file without opening the editor. Need only matching leftover-box lines first? Find a word in a leftover-box file. Need leftover-box first leftover-box lines, not leftover-box columns joined? See the start of a leftover-box file. Need leftover-box last leftover-box lines? See the end of a leftover-box file. 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 coreutils: paste invocation. Debian: paste. Ubuntu: paste. Official pages only. For the login, see SSH from the couch. For leftover-box columns first, see pull one leftover-box column. For leftover-box characters, see change leftover-box characters. For leftover-box copies, see drop leftover-box duplicate lines. For leftover-box order, see put leftover-box lines in order. For handing leftover-box print to another leftover-box command, see send leftover-box output into another command.

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. Pull one leftover-box columnAfter SSH works, pull one leftover-box column with cut so a mixed leftover-box line is easier to scan. You do not need a file manager app for this. Change leftover-box charactersAfter SSH works, change leftover-box characters with tr so a mixed leftover-box line is easier to clean. You do not need a file manager app for this. Drop leftover-box duplicate linesAfter SSH works, drop leftover-box duplicate lines with uniq so a mixed list shows each leftover-box line once. You do not need a file manager app for this. Put leftover-box lines in orderAfter SSH works, put leftover-box lines in order with sort so a mixed list is easier to scan. You do not need a file manager app for this. 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. 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. 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. Number leftover-box linesAfter SSH works, number leftover-box lines with nl so a long leftover-box file is easier to point at. 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.