[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]

System Management Concepts: Operating System and Devices


Finding and Examining Files for BSD 4.3 System Managers

This operating system supports the following 4.3 BSD file commands:

This operating system does not support the 4.3 BSD fast find syntax of the find command. At this time, there is no replacement function. The following ffind shell script can be used to simulate the functionality:

#!/bin/bsh
PATH=/bin
for dir in /bin /etc /lib /usr
do
find $dir -print | egrep $1
done

The syntax for the ffind script is:

ffind Filename 


[ Previous | Next | Table of Contents | Index | Library Home | Legal | Search ]