Compare commits
7 Commits
4a9cd06654
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ce7c641af | |||
| 71cf71e29b | |||
| 58525e2a5c | |||
| f7869fd453 | |||
| 95212b1c73 | |||
| ad6b9d4794 | |||
| c6e8290b43 |
@@ -39,7 +39,7 @@ echo "*** Creating backup at '$BACKUP' ***"
|
|||||||
sudo zip -rv "$BACKUP" \
|
sudo zip -rv "$BACKUP" \
|
||||||
/etc /var/{log,mail,spool} /srv /boot \
|
/etc /var/{log,mail,spool} /srv /boot \
|
||||||
/usr/local/etc $EXTRA \
|
/usr/local/etc $EXTRA \
|
||||||
-x "/srv/backup/*"
|
-x "/srv/backup/*" -x "/srv/sftp/*"
|
||||||
status="$?"
|
status="$?"
|
||||||
|
|
||||||
if [[ "$status" != 0 ]]; then
|
if [[ "$status" != 0 ]]; then
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ function usage() {
|
|||||||
# Parameters:
|
# Parameters:
|
||||||
# 1) The exit status to use.
|
# 1) The exit status to use.
|
||||||
status=$1
|
status=$1
|
||||||
echo "Usage: $PROG [-s SIZE] [-l LOCATION] [-A | [-r] [-f] [-d] [-c]] [-h] [-x]" >&2
|
echo "Usage: $PROG [-s SIZE] [-l LOCATION] [-A | [-r] [-f] [-d] [-c]] [-h] [-x] [-t]" >&2
|
||||||
cat <<- EOF
|
cat <<- EOF
|
||||||
Compress JPG or PNG image(s). Can handle folders and work recursively.
|
Compress JPG or PNG image(s). Can handle folders and work recursively.
|
||||||
|
|
||||||
@@ -45,13 +45,14 @@ function usage() {
|
|||||||
-A : Resursively Force, Delete, and Clean.
|
-A : Resursively Force, Delete, and Clean.
|
||||||
-h : Display this usage text.
|
-h : Display this usage text.
|
||||||
-x : Enable BASH debugging.
|
-x : Enable BASH debugging.
|
||||||
|
-t : Format timestamp.
|
||||||
EOF
|
EOF
|
||||||
exit $status
|
exit $status
|
||||||
}
|
}
|
||||||
|
|
||||||
## Parameters ##
|
## Parameters ##
|
||||||
|
|
||||||
while getopts ":s:l:rfFdcAhx" opt; do
|
while getopts ":s:l:rfFdcAhxt" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
s) in_size="$OPTARG" && size="$in_size" ;;
|
s) in_size="$OPTARG" && size="$in_size" ;;
|
||||||
l) location="$OPTARG" ;;
|
l) location="$OPTARG" ;;
|
||||||
@@ -64,6 +65,7 @@ while getopts ":s:l:rfFdcAhx" opt; do
|
|||||||
A) recurse="Y" && search="find" && force="Y" && delete="Y" && expand="Y" ;;
|
A) recurse="Y" && search="find" && force="Y" && delete="Y" && expand="Y" ;;
|
||||||
h) usage 0 ;;
|
h) usage 0 ;;
|
||||||
x) set -x ;;
|
x) set -x ;;
|
||||||
|
t) format_time="Y" ;;
|
||||||
*) echo "ERROR: Option $OPTARG not recognized." >&2 && usage 1 ;;
|
*) echo "ERROR: Option $OPTARG not recognized." >&2 && usage 1 ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
@@ -130,7 +132,9 @@ $search "$location" | sort | while read image; do
|
|||||||
# Date Data
|
# Date Data
|
||||||
new_image_exp="${TEMP:0:4}-${TEMP:4:2}-${TEMP:6:2}"
|
new_image_exp="${TEMP:0:4}-${TEMP:4:2}-${TEMP:6:2}"
|
||||||
# Time Data
|
# Time Data
|
||||||
new_image_exp="${new_image_exp}_${TEMP:8:2}-${TEMP:10:2}-${TEMP:12:2}"
|
if [[ "$format_time" == "Y" ]]; then
|
||||||
|
new_image_exp="${new_image_exp}_${TEMP:8:2}-${TEMP:10:2}-${TEMP:12:2}"
|
||||||
|
fi
|
||||||
# Remainder Data
|
# Remainder Data
|
||||||
if [[ "${TEMP:14:1}" == "." ]]; then
|
if [[ "${TEMP:14:1}" == "." ]]; then
|
||||||
SEP=""
|
SEP=""
|
||||||
|
|||||||
@@ -957,7 +957,7 @@
|
|||||||
|
|
||||||
if [[ "$rcvr" == "main" ]]; then
|
if [[ "$rcvr" == "main" ]]; then
|
||||||
echo "*** ERROR: Are you nuts, fool!? Not main! Do it manually! ***"
|
echo "*** ERROR: Are you nuts, fool!? Not main! Do it manually! ***"
|
||||||
exit 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$base" ]]; then
|
if [[ -z "$base" ]]; then
|
||||||
@@ -967,7 +967,7 @@
|
|||||||
base="dev"
|
base="dev"
|
||||||
else
|
else
|
||||||
echo "* Unsure which branch to use for '$rcvr'. Please specify."
|
echo "* Unsure which branch to use for '$rcvr'. Please specify."
|
||||||
exit 1
|
return 1
|
||||||
fi
|
fi
|
||||||
echo "* Base was not specified, using '$base' for '$rcvr'."
|
echo "* Base was not specified, using '$base' for '$rcvr'."
|
||||||
else
|
else
|
||||||
@@ -1011,6 +1011,18 @@
|
|||||||
alias reset-prod="load-branch prod main"
|
alias reset-prod="load-branch prod main"
|
||||||
alias reset-stage="load-branch stage main"
|
alias reset-stage="load-branch stage main"
|
||||||
alias reset-dev="load-branch dev main"
|
alias reset-dev="load-branch dev main"
|
||||||
|
function check-code-branches {
|
||||||
|
for dir in ~/Code/*/; do
|
||||||
|
cd $dir
|
||||||
|
pwd
|
||||||
|
git ls-remote --heads
|
||||||
|
echo " "
|
||||||
|
cd ..
|
||||||
|
done
|
||||||
|
}
|
||||||
|
alias check-branches="check-code-branches"
|
||||||
|
alias check-branch="git ls-remote --heads"
|
||||||
|
alias branch-check="check-branch"
|
||||||
alias_reload_bash: |
|
alias_reload_bash: |
|
||||||
alias reload-bash="source ~/.bashrc"
|
alias reload-bash="source ~/.bashrc"
|
||||||
alias bash-reload="reload-bash"
|
alias bash-reload="reload-bash"
|
||||||
@@ -1031,8 +1043,6 @@
|
|||||||
alias_flatpak_clean: |
|
alias_flatpak_clean: |
|
||||||
alias flatpak-clean="flatpak uninstall --unused"
|
alias flatpak-clean="flatpak uninstall --unused"
|
||||||
alias_commit: |
|
alias_commit: |
|
||||||
# TBD function to git add, git commit, and git push in a single go.
|
|
||||||
# Already exists on Termux env. Needs tested.
|
|
||||||
function commit_usage {
|
function commit_usage {
|
||||||
echo 'Usage: commit "This is a commit message"'
|
echo 'Usage: commit "This is a commit message"'
|
||||||
}
|
}
|
||||||
@@ -1135,6 +1145,7 @@
|
|||||||
{{ global_functions }}
|
{{ global_functions }}
|
||||||
{{ alias_docker_other }}
|
{{ alias_docker_other }}
|
||||||
{{ alias_flatpak_clean }}
|
{{ alias_flatpak_clean }}
|
||||||
|
{{ alias_commit }}
|
||||||
|
|
||||||
- name: General | Account Management | Users | Files | .bashrc
|
- name: General | Account Management | Users | Files | .bashrc
|
||||||
blockinfile:
|
blockinfile:
|
||||||
|
|||||||
Reference in New Issue
Block a user