#!/bin/sh
# print first match of file with : delimiters add | to results and show results on 1 line
awk -F: -vORS="" {'print $1 "|" '} /etc/passwd
