Findview - Overview
This is a simple bash script that will save the results of file search in a directory.
Features
- Supports all the same search criteria as the find command
- Previous searches can be updated without needing to remember the criteria used
- Symlinks used for results, so minimal disk space used
Requirements
- BASH installed
- The following shell utilities
- find
- sed
- which
- pwd
Findview - Help
Run the following command for help.
./findview.sh -h
findview options should be placed before the double dash (--) and the find criteria should be placed after. Here are some examples of how to use findview.
Find all .pl files in your home dir
As you can see any options after the double-dash "--" are standard find command options.
The results of the find will be placed in "/tmp/view1"
./findview.sh /tmp/view1 -- ~/ -name "*.pl"
Updating a previous search's results
This will prompt you if you want to remove all the files from the current directory and use the criteria
found in ".findview_search" to run the search again.
cd /tmp/view1 ./findview.sh -u
Findview - Changelog
Version 1.2 (2oth May 2007)
Version 1.1 (2nd March 2007)
Version 1.0 (24th February 2007)
Findview - Downloads
Version | Size | Date | Notes |
---|---|---|---|
1.2 | 1.5k | 20/05/2007 | Filenames with spaces supported |
1.1 | 1.2k | 02/03/2007 | Update function fixed |
1.0 | 1.1k | 24/02/2007 |