Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/firstandthird/fa
CLI app to quickly change directories or search files
https://github.com/firstandthird/fa
Last synced: 14 days ago
JSON representation
CLI app to quickly change directories or search files
- Host: GitHub
- URL: https://github.com/firstandthird/fa
- Owner: firstandthird
- Created: 2013-09-18T01:07:49.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-12T14:58:35.000Z (almost 11 years ago)
- Last Synced: 2024-04-08T15:13:11.990Z (10 months ago)
- Language: Shell
- Size: 178 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
Awesome Lists containing this project
README
#fa (Find Anything)
##Usage
```shell
Usage: fa [options]Options:
-f, --file search for files
-d, --dir change directory (default)
-i, --interactive interactively choose a result
-e, --exec pass in result into app (ex: vim)
-r, --root set root folder to search from
--depth number of directories to search in (default: $DEPTH)
-v, --verbose verbose output
-V, --version output program version
--update update fa to latest version
-h, --help output help information```
##Install
`make install`
Single line install:
```
(mkdir /tmp/fa && cd /tmp/fa && curl -L# https://github.com/firstandthird/fa/archive/master.tar.gz | tar zx --strip 1 && make install)
```After installation, add this to your .bash_profile or .bashrc:
```
eval "$(fa --init)"
```