Skip to content

gromgit/bash_functions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

bash_functions

My collection of bash functions, mostly inspired by Reddit interactions, including:

$ source shift_array.bash
$ a=({1..10})
$ declare -p a
=> declare -a a=([0]="1" [1]="2" [2]="3" [3]="4" [4]="5" [5]="6" [6]="7" [7]="8" [8]="9" [9]="10")
$ shift_array a 4
$ declare -p a
=> declare -a a=([0]="5" [1]="6" [2]="7" [3]="8" [4]="9" [5]="10")

About

My collection of bash functions

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages