#!/bin/sh # sicwrite — write content (passed as one argv by sic, so any # bytes survive) to path. Replaces the write_file tool for sic on any host. [ $# -ge 2 ] || { echo "usage: sicwrite " >&2; exit 2; } printf '%s' "$2" > "$1"