Blame


1 8fe7904a 2014-11-07 marcelgmr Introduction
2 8fe7904a 2014-11-07 marcelgmr ============
3 8fe7904a 2014-11-07 marcelgmr
4 c9f42136 2021-11-25 op > fm is a file browser for the terminal.
5 cc8a22df 2014-11-07 marcelgmr
6 c9f42136 2021-11-25 op The main goal is to provide a faster way to explore a file system from
7 c74df358 2021-12-01 op the terminal, compared to what's possible by using `cd`, `ls`, etc.
8 c74df358 2021-12-01 op fm has vi-like key bindings for navigation and can open files in
9 c74df358 2021-12-01 op `$PAGER` and `$EDITOR`. Basic file system operations are also
10 c74df358 2021-12-01 op implemented (see fm(1) for details). fm is designed to be simple,
11 c74df358 2021-12-01 op fast and portable.
12 95bdeca1 2014-11-07 marcelgmr
13 c9f42136 2021-11-25 op fm was forked from [Rover](https://github.com/lecram/rover).
14 8fe7904a 2014-11-07 marcelgmr
15 8fe7904a 2014-11-07 marcelgmr Quick Start
16 8fe7904a 2014-11-07 marcelgmr ===========
17 8fe7904a 2014-11-07 marcelgmr
18 c74df358 2021-12-01 op Building and Installing:
19 c9f42136 2021-11-25 op ```
20 c74df358 2021-12-01 op $ make
21 c74df358 2021-12-01 op $ sudo make install
22 c9f42136 2021-11-25 op ```
23 8225771f 2016-12-05 marcelgmr
24 c74df358 2021-12-01 op Running:
25 c9f42136 2021-11-25 op ```
26 c74df358 2021-12-01 op $ fm [DIR1 [DIR2 [DIR3 [...]]]]
27 c9f42136 2021-11-25 op ```
28 8fe7904a 2014-11-07 marcelgmr
29 c9f42136 2021-11-25 op Please read fm(1) for more information.
30 c9f42136 2021-11-25 op
31 c9f42136 2021-11-25 op
32 c74df358 2021-12-01 op Requirements
33 c74df358 2021-12-01 op ============
34 c74df358 2021-12-01 op
35 c74df358 2021-12-01 op * Unix-like system;
36 c74df358 2021-12-01 op * curses library.
37 c74df358 2021-12-01 op
38 c74df358 2021-12-01 op
39 d1f7bb95 2015-06-02 marcelgmr Copying
40 d1f7bb95 2015-06-02 marcelgmr =======
41 d1f7bb95 2015-06-02 marcelgmr
42 c9f42136 2021-11-25 op All of the source code and documentation for fm is released into the
43 c9f42136 2021-11-25 op public domain and provided without warranty of any kind.