Skip to content

showa-yojyo/bin

Repository files navigation

README

What is this?

This repository contains various script files for my use. Most of the script files are written in Bash or Python so far.

Installation

First, clone this repository to your $HOME/.local/bin directory (recommended).

$ mkdir -p ~/.local/bin && cd $_ # optional
$ git clone https://github.com/showa-yojyo/bin.git .

And make sure the PATH environment variable includes this directory. For example, in .bash_profile, set it as below:

# in .bash_profile or .profile

# set PATH so it includes user's private bin if it exists
for dir in "$HOME/.local/bin" "$HOME/bin"; do
    if [ -d "$dir" ] ; then
        PATH="$dir:$PATH"
        break
    fi
done

Dependencies

Bug Reporting

Please do not report any issues you find to me.

About

Back up of $HOME/bin

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published