also a customized script for fred for backing up his onedrive folder.
some better docs too.
--- /dev/null
+#!/bin/bash
+
+# backs up the uva onedrive folder (which itself is fed from the cloud).
+
+source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
+
+pushd ~/data
+exit_on_error changing to data folder.
+
+zip -r ~/onedrive_backup_uva_$(date_stringer).zip onedrive-uva-live -x \*.ova -x \*.webarchive
+exit_on_error zipping up the uva onedrive folder.
+
+
+popd
+
+
--- /dev/null
+#!/bin/bash
+
+# find last written files, made friendly for dell by avoiding the .clusterConfig directory.
+
+for pathname in "${@}"; do
+
+ echo ==============
+ echo latest on path: $pathname
+ echo
+
+ find "$pathname" -path "$pathname/.clusterConfig" -prune -o -type f -print0 | xargs -0 stat --format '%Y :%y %n' | sort -nr | cut -d: -f2- | head -n 20
+
+ echo; echo
+
+done
+
#!/bin/bash
+# displays every certificate in a PEM file that has a whole certificate chain.
+# this is surprisingly annoying to get anything to output, so we codified it.
+
+# by chris koeritz
+
file="$1"; shift
if [ -z "$file" -o ! -f "$file" ]; then
echo This script requires a PEM-format file name to show the certificates within.