Zum Inhalt der Seite gehen

Suche

Beiträge, die mit tip getaggt sind


Very much enjoyed watching Our Oceans with Obama's annoying voice replaced by Max Richter's album On The Nature of Daylight on repeat 👍

#Tip #Oceans #Music


You know you can use your mouse and keyboard between different Macs using Universal Control and copy/paste between them (which makes it really easy when manually migrating settings, etc., between machines), but did you know you can also copy/paste whole files using Terminal:

On the first Mac:

cat my-file.txt | pbcopy

On the second Mac:

pbpaste > my-file.txt

Piping to pbcopy is something you’ll likely find useful in general.

(You can also drag/drop files to Finder.)

#macOS #tip #terminal