Shell-tools: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 19: Line 19:
</pre>
</pre>


=Tools=


* <tt>cdw</tt>
* <tt>searchjar</tt>
* <tt>rename-intellij</tt>


# shell-tools
=Installation=
 
A collection of ready-to-use command line tools. Includes searchjar, setw/cdw, etc. Can be used both on
Linux and Cygwin systems.
 
## Tools
 
* cdw
* searchjar
 
## Installation
 


<pre>
     cd ~/bin
     cd ~/bin
     git clone git@github.com:NovaOrdis/shell-tools.git
     git clone git@github.com:NovaOrdis/shell-tools.git
</pre>


Alternatively, read only access is available for an arbitrary Git account:
Alternatively, read only access is available for an arbitrary Git account:


<pre>
     git clone https://<git-account>@github.com/NovaOrdis/shell-tools.git
     git clone https://<git-account>@github.com/NovaOrdis/shell-tools.git
</pre>


Then edit <tt>~/.bashrc</tt> as follows:


Then edit ~/.bashrc as follows:
<pre>


     ...
     ...
Line 48: Line 46:
     alias cdw='. cdwi'
     alias cdw='. cdwi'
     export PATH=~/bin/shell-tools:${PATH}
     export PATH=~/bin/shell-tools:${PATH}
</pre>

Revision as of 00:45, 26 February 2016

Internal

Overview

A collection of ready-to-use command line tools. Includes searchjar, setw/cdw, etc. Can be used both on Linux and Cygwin systems.

GitHub


https://github.com/NovaOrdis/shell-tools

To clone:

git clone git@github.com:NovaOrdis/shell-tools.git

Tools

  • cdw
  • searchjar
  • rename-intellij

Installation

    cd ~/bin
    git clone git@github.com:NovaOrdis/shell-tools.git

Alternatively, read only access is available for an arbitrary Git account:

    git clone https://<git-account>@github.com/NovaOrdis/shell-tools.git

Then edit ~/.bashrc as follows:


    ...

    alias cdw='. cdwi'
    export PATH=~/bin/shell-tools:${PATH}