$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Step-by-step – Airpaste Sharing and Streaming Linux Mint 18 Guide

February 9, 2021 | By the+gnu+linux+evangelist.

Getting Started

  1. 4. Sharing Content

    To Sharing Files on Network by Airpaste.

    On the Sending computer do:

    airpaste < my.file

    On the Receiving terminal run:

    airpaste > my.file

    To Sharing & Streaming Content on the Pipe.
    Since Airpaste just outputs to stdout you can also do stuff like piping Movies/Music to Mplayer and any other that support streaming to stdin:

    • Sharing Text Content.

      Sending:

      echo hello world | airpaste

      Receiving:

      airpaste

      Optionally to Filter Receivers you can also Name the Pipe as an airpaste Argument like “airpaste myPipe.”

    • Streaming Media File.

      Sending:

      airpaste < movie.mp4

      Streaming:

      airpaste | mplayer -

Contents