#!/bin/bash
# Wed Jun 16 18:38:53 EDT 2004
# NAME: pr1
# DESCRIPTION: Print arguments one per line
# Copyright 2004, Chris F.A. Johnson
# Released under the terms of the GNU General Public License

case $1 in
    -w) pr_w=; shift ;;
    *) pr_w=-.${COLUMNS:-80} ;;
esac
printf "%${pr_w}s\n" "$@"

