Skip to content
/ bin Public

Useful collection of bash aliases and functions that I use on my Unix machines

Notifications You must be signed in to change notification settings

iBatistic/bin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Useful collection of bash aliases and functions that I use on my Unix machines


To make bash scripts executable use:

$chmod u+x fileName

My location of the bin folder is in my $HOME directory, therefore this needs to be added to the .bashrc file:

if [ -d "$HOME/bin" ] ; then

    export PATH="$HOME/bin:$PATH"
    export PATH="$HOME/bin/OpenFOAM:$PATH"
    
    if [ -f "$HOME/bin/aliases" ]; then
        source $HOME/bin/aliases
    fi
    
    if [ -f "$HOME/bin/functions" ]; then
        source $HOME/bin/functions
    fi
fi

OpenFOAM folder consists of various functions and dicts useful for use with OpenFOAM.

About

Useful collection of bash aliases and functions that I use on my Unix machines

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages