Tags: directories

Searching for Files and Directories Using the find command

Linux, Solaris, Aix, HP-UX, Shell Script Send feedback »
The find command recursively descends the directory tree in the path name list, looking for the files that match the search criteria. As the find command locates the files that match those criteria, the path to each file is displayed on the screen.… more »

Solaris: Mounting Directories via NFS

Solaris Send feedback »
To mount directories via NFS from the host on which the central instance runs, log on as user root and proceed as follows:On the host on which the main instance runs:1. Enter the command:/usr/sbin/share2. Edit the file /etc/dfs/dfstab to add file systems… more »

Linux: Exporting Directories via NFS

Linux 1 feedback »
To export directories via NFS, perform the following steps (the following assumes that the central instance host is the NFS server):1. Log on as user root to the NFS server.2. Make sure that your host is configured as NFS server by making sure that the o… more »

To Count Number of files in Dir & Sub dir

Technology, Linux Send feedback »
ls -laR | grep -c "^-.*" more »