#!/bin/bash tmp="$(mktemp)" cat >"$tmp" nasm "$@" "$tmp" -o /dev/stdout | xxd -p rm "$tmp"