Skip to content

kallehauge/bash-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

Bash scripts and functions

Random collection of scripts and functions that I periodically use depending on what project(s) I'm working on.

Usage

I have my old trusty "include all functions" script so I don't have to do it one by one.

It does assume this project was cloned into ~/.bash, so watch out for that.

# Include all ".sh" files directly inside the functions directory.
for f in ~/.bash/functions/*; do
    if [[ $f == *.sh ]] ;
    then
        . $f
    fi
done

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages