diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-01 01:42:09 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-01 01:42:09 -0200 |
commit | 1ac53e6d9073453ea6e545e276a8b240d5d91250 (patch) | |
tree | e9eff7b999232f6b9ec3dac6c31dadd0c7157bba /metadot | |
parent | e8c28ff3866376c292efb5152de4e63f8891c774 (diff) | |
download | dotfiles-1ac53e6d9073453ea6e545e276a8b240d5d91250.tar.gz dotfiles-1ac53e6d9073453ea6e545e276a8b240d5d91250.tar.bz2 |
Usage
Diffstat (limited to 'metadot')
-rwxr-xr-x | metadot | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ #!/bin/bash # -# metadot: a dotfile manager +# metadot: a dotfile management system # # Parameters @@ -75,6 +75,8 @@ function metadot_load { if [ -z "$OPT" ]; then echo "usage: $BASENAME <option> [arguments]" exit 1 +elif [ "$OPT" == "ls" ]; then + ls -1 $MODULES elif [ "$OPT" == "update" ]; then ( cd $DOT && git pull origin master && git submodule update --init ) elif [ "$OPT" == "load" ]; then |