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 30d7b01e 2023-02-08 op fm was forked from [Rover](https://github.com/lecram/rover) and is still
14 30d7b01e 2023-02-08 op heavily a work in progress. Lots of features were removed that need to
15 30d7b01e 2023-02-08 op be reimplemented and more need to be fixed.
16 8fe7904a 2014-11-07 marcelgmr
17 8fe7904a 2014-11-07 marcelgmr Quick Start
18 8fe7904a 2014-11-07 marcelgmr ===========
19 8fe7904a 2014-11-07 marcelgmr
20 c74df358 2021-12-01 op Building and Installing:
21 8225771f 2016-12-05 marcelgmr
22 30d7b01e 2023-02-08 op $ make
23 30d7b01e 2023-02-08 op $ doas make install
24 30d7b01e 2023-02-08 op
25 30d7b01e 2023-02-08 op
26 c74df358 2021-12-01 op Running:
27 8fe7904a 2014-11-07 marcelgmr
28 30d7b01e 2023-02-08 op $ fm [dir ...]
29 30d7b01e 2023-02-08 op
30 30d7b01e 2023-02-08 op
31 c9f42136 2021-11-25 op Please read fm(1) for more information.
32 c9f42136 2021-11-25 op
33 c9f42136 2021-11-25 op
34 c74df358 2021-12-01 op Requirements
35 c74df358 2021-12-01 op ============
36 c74df358 2021-12-01 op
37 c74df358 2021-12-01 op * Unix-like system;
38 c74df358 2021-12-01 op * curses library.
39 c74df358 2021-12-01 op
40 c74df358 2021-12-01 op
41 d1f7bb95 2015-06-02 marcelgmr Copying
42 d1f7bb95 2015-06-02 marcelgmr =======
43 d1f7bb95 2015-06-02 marcelgmr
44 c9f42136 2021-11-25 op All of the source code and documentation for fm is released into the
45 c9f42136 2021-11-25 op public domain and provided without warranty of any kind.