relpipe-data/examples/relpipe-out-fstab.sh
author František Kučera <franta-hg@frantovo.cz>
Tue, 28 May 2019 21:18:20 +0200
branchv_0
changeset 258 2868d772c27e
parent 194 cd5524d03739
child 317 fce3d6290c40
permissions -rwxr-xr-x
Release v0.12 – AWK

#!/bin/bash

(
	# Just troll-in the first record:
	relpipe-in-cli generate Heathers 7 \
		Duke string McNamara string Chandler string Veronica string J.D. string \
		Big string Fun string \
		'' '# <file system>' '<mount point>' '<type>' '<options>' '<dump>' '<pass>';
		# relpipe-out-nullbyte processes only attribute values
	# Read the actual pipe's input:
	cat
)	| relpipe-out-nullbyte \
	| xargs --null --max-args=7 perl -e \
		'printf("%-*s %-*s %-*s %-*s %-*s %s\n",
			# following numbers define paddings:
			50, ($ARGV[0] eq "" ? $ARGV[1] : "$ARGV[0]=$ARGV[1]"),
			40, ($ARGV[2] eq "" ? "none" : $ARGV[2]),
			16, $ARGV[3],
			50, $ARGV[4],
			 8, $ARGV[5],
			    $ARGV[6]
		);'