Skip to content
This repository has been archived by the owner on Feb 23, 2020. It is now read-only.
/ milib-tool Public archive

Utilities for downloading, updating and installing libraries developed in Motor Intelligence Laboratory in Osaka University

Notifications You must be signed in to change notification settings

hrshtst/milib-tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Utilities for Motor Intelligence Laboratory Library

Utilities for installing libraries developed in Motor Intelligence Laboratory in Osaka University. See the project page for more details.

Getting started

Downloading

To download the latest version of cure, type the following:

./download cure

To download all the public versions of cure, type the following:

mkdir -p archive
tac versions/cure.public | xargs -n 1 ./download --output-dir archive

To download all the versions of cure including ones which are stored on Motor Intelligence Laboratory's wiki, type the following:

mkdir -p archive
tac versions/cure | xargs -n 1 ./download --output-dir archive --user USERNAME --passwd PASSWORD

Or, you can create a file which contains username and password for authentication to wiki.

 echo "USERNAME" >>passwd    # this command should not remain in the command history
 echo "PASSWORD" >>passwd    # this command should not remain in the command history
chmod 400 passwd
tac versions/cure | xargs -n 1 ./download --output-dir archive --passwd-file passwd

Updating

To update source files to a specific version of cure, type the following:

./update --no-git cure-1.0.0-beta5.tgz cure

To make a Git commit when updating, type the following:

./update cure-1.0.0-beta5.tgz cure

To make a series of Git commit history, type the following:

tac versions/cure | xargs -n 1 -i ./update --skip archive/{} cure

About

Utilities for downloading, updating and installing libraries developed in Motor Intelligence Laboratory in Osaka University

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages