Skip to content

daichirata/ralias

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ralias

Build Status

Supported versions

  • Ruby 1.8.7, 1.9.x, ree

Install

$ gem install ralias

How to use

you type

$ ralias

help will be output.

help      -> print help
init      -> create ~/.raliasrc
list      -> print defined aliase command
define    -> define new aliase command (TODO)

Ralias init

create .raliasrc file.

$ ralias init

.raliasrc

An example of how editing

normal alias definition.

define("lsA") { "ls -al" }

please use this way.

$ ralias lsA

if you want to use the arguments to the alias

define("github") do |user_name, repository|
  "git clone https://github.com/#{user_name}/#{repository}.git"
end

in that case, you use it in this manner.

$ ralias github user_name repository

result is

load ~/.raliasrc
Cloning into repository...
...

$ ralias list

print defined aliase command.

if the initial state,

help
init
define
list

if after you define the command.

help
init
define
list
github :user_name :repository

About

can be defined like the alias of shell

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages