#!/bin/sh
set -e
TMP=params_shell_tmp.$$
cat > $TMP
wc -l $TMP | cut -d ' ' -f 1
cat $TMP
rm -f $TMP
