Trims fat and renames files

This commit is contained in:
William Carroll 2016-08-15 11:14:37 -04:00
parent 6021ad3194
commit 4563550969
40 changed files with 233 additions and 352 deletions

29
functions/js_to_bash.sh Normal file
View file

@ -0,0 +1,29 @@
# js function syntax for bash
function trimend {
LENGTH=${#1}
AMT=$2
TAKE=$((LENGTH-AMT))
echo $1 | cut "-c-$TAKE"
}
function trimfront {
TMP0=$(echo $1 | rev)
TMP1=$(trimend $TMP0 $2 | rev)
echo $TMP1
}
function length {
echo ${#1}
}
function slice {
start="$1"
end="$2"
string="$3"
echo "${string:${start}:${end}}"
}
function setInterval {
eval "while true; do $1; sleep $2; done"
}