bringing back into dev.
and btw, #&**&#&@^#&^@&#^!!!!!
#hmmm: would the composition of those two types of extensions cover all the files i want to rename? they have to be "important".
find "${dirs[@]}" -follow -maxdepth 1 -mindepth 1 -type f -and -not -iname ".[a-zA-Z0-9]*" | \
grep -i \
-"csv\|doc\|docx\|eml\|html\|jpeg\|jpg\|m4a\|mov\|mp3\|odp\|ods\|odt\|pdf\|png\|ppt\|pptx\|rtf\|txt\|vsd\|vsdx\|xls\|xlsx\|xml\|zip" | \
+"csv\|doc\|docx\|eml\|html\|jpeg\|jpg\|m4a\|mov\|mp3\|odp\|ods\|odt\|pdf\|png\|ppt\|pptx\|rtf\|txt\|vsd\|vsdx\|wav\|xls\|xlsx\|xml\|zip" | \
sed -e 's/^/"/' | sed -e 's/$/"/' | \
xargs bash "$FEISTY_MEOW_SCRIPTS/files/spacem.sh"
# drop the temp file now that we're done.
fi
export PATH=$e:$PATH
fi
+# add in our personal bin path.
+if [ -d "/usr/local/fred/bin" ]; then
+ export PATH=/usr/local/fred/bin:$PATH
+fi
############################
--- /dev/null
+#!/bin/bash
+
+# windows compatible process killer for any stray processes started as
+#"fallout" something.
+
+source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh
+
+procid="$( psa fallout | tail -n 1 | awk '{ print $1; }' )"
+
+if [ ! -z "$procid" ]; then
+ taskkill.exe /f /pid ${procid}
+fi
+++ /dev/null
-#!/bin/bash
-
-# windows compatible process killer for any stray processes started as
-#"fallout" something.
-
-source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh
-
-procid="$( psa fallout | tail -n 1 | awk '{ print $1; }' )"
-
-if [ ! -z "$procid" ]; then
- taskkill.exe /f /pid ${procid}
-fi
--- /dev/null
+#!/bin/bash
+
+# windows compatible process killer for any stray processes started as
+#"fallout" something.
+
+source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh
+
+procid="$( psa skyrim | tail -n 1 | awk '{ print $1; }' )"
+
+if [ ! -z "$procid" ]; then
+ taskkill.exe /f /pid ${procid}
+fi
--- /dev/null
+#!/bin/bash
+
+# find the most recently updated files in a folder.
+# made friendlier for dell by avoiding the .clusterConfig directory and for
+# netapp by avoiding the .snapshot directory.
+
+declare -a paths=("${@}")
+echo "paths 1 now is: ${paths[@]}"
+if [ ${#paths} -eq 0 ]; then
+ paths[0]='.'
+fi
+echo "paths 2 now is: ${paths[@]}"
+
+for pathname in "${paths[@]}"; do
+
+ echo ===============
+ echo newest on path: $pathname
+ echo ===============
+ echo
+
+ find "$pathname" -path "$pathname/.clusterConfig" -prune -o -path "$pathname/.snapshot" -prune -o -type f -print0 | xargs -0 stat --format '%Y :%y %n' | sort -nr | cut -d: -f2- | head -n 20
+
+ echo; echo
+
+done
+
--- /dev/null
+#!/bin/bash
+
+# find the most antiquated files in a folder.
+# made friendlier for dell by avoiding the .clusterConfig directory and for
+# netapp by avoiding the .snapshot directory.
+
+declare -a paths=("${@}")
+echo "paths 1 now is: ${paths[@]}"
+if [ ${#paths} -eq 0 ]; then
+ paths[0]='.'
+fi
+echo "paths 2 now is: ${paths[@]}"
+
+for pathname in "${paths[@]}"; do
+
+ echo ===============
+ echo oldest on path: $pathname
+ echo ===============
+ echo
+
+ find "$pathname" -path "$pathname/.clusterConfig" -prune -o -path "$pathname/.snapshot" -prune -o -type f -print0 | xargs -0 stat --format '%Y :%y %n' | sort -n | cut -d: -f2- | head -n 20
+
+ echo; echo
+
+done
+