June 16th 2026 - Interesting Finds

UTM safe security options

Under Sharing:

  • Disable Clipboard
  • Set None for Directory Share Mode

Under Network:

  • Set Network Mode to Emulated VLAN

Unix print data in table format (column)

We can use the column command to print data in a table format.

printf "header1 header2\nbar foo\ntest\nanother something\n" | column -t

Output:

header1  header2   
bar      foo       
test               
another  something