home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / sparcmgr / demo1.zoo / demo / msg / do_file < prev    next >
Encoding:
Text File  |  1989-01-24  |  524 b   |  20 lines

  1. #    $Header$
  2. #    $Source$
  3.  
  4. #                        Copyright (c) 1987 Bellcore
  5. #                            All Rights Reserved
  6. #       This document contains proprietary information that shall
  7. #       be distributed or routed only within Bellcore and its
  8. #       authorized clients, except with written permission of Bellcore.
  9.  
  10. #! /bin/sh
  11. # list all file types in current directory
  12. #
  13. dir=`echo $* | sed 's./[^/]*$..'`
  14. (  echo "             ---> $dir <---";
  15.    cd $dir;
  16.    file *;
  17.    echo "Hit RETURN to continue"
  18.    ) | more
  19.  
  20.