tREADME - fffs - fast and simple shell plugin manager
 (HTM) git clone git://src.adamsgaard.dk/fffs
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       tREADME (1124B)
       ---
            1 # fffs
            2 
            3 A fast and simple manager for shell plugins, written by Anders Damsgaard
            4 anders@adamsgaard.dk. See LICENSE for licensing information.
            5 
            6 usage: fffs [OPTION] SHELL COMMAND
            7 fffs is a fast and simple manager for shell plugins
            8 where SHELL can be 'bash' or 'zsh'.
            9 Valid COMMANDs are:
           10     init           fetch repositories specified in plugin file and
           11                    create configuration for parent shell. Call this
           12                    function after every update to the plugin file
           13     update         update all local plugin content
           14     clean          remove all local plugin content
           15 Valid OPTIONs are:
           16     -h, --help         show this message
           17     -v, --version      show version and license information
           18 
           19 Set the plugin sources as git repository URLs in 
           20 /home/ad/.config/fffs/plugins-zsh or /home/ad/.config/fffs/plugins-bash
           21 before running 'init'. Afterwards, add the generated sources file in 
           22 the shell-rc file. For ~/.zshrc:
           23     if [ -f "$HOME/.config/fffs/lib/zsh/sources" ]; then
           24         . "$HOME/.config/fffs/lib/zsh/sources"
           25     else
           26         fffs zsh init
           27         . "$HOME/.config/fffs/lib/zsh/sources"
           28     fi