#!/bin/sh -u # $0 (no input; no arguments) # This script creates a hidden directory with the sorted passwd file inside. # Ian Allen - idallen@ncf.ca Jun 18, 2001 export PATH=/bin:/usr/bin umask 022 cd pwd cd test_two pwd mkdir .dotdir sort -r /etc/passwd >.dotdir/passwd chmod 731 .dotdir