This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This copies files from a source folder into a destination. Date-based subfolders are created and files are copied into them. | |
# The Sony RX1 MTP disconnected frequently so I had to build this script to copy photographs into destination organized by date-based subfolders. | |
# The date is detected by the output of file modification time $(date -r). | |
# This script hasn't been tested with paths containing spaces or special characters. Use at your own risk! | |
confirm() { | |
# call with a prompt string or use a default | |
read -r -p "${1:-Are you sure? [y/N]} " response |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt-get install -y git curl wget zsh neovim htop screen | |
#optional | |
# sudo apt install openssh-server atop | |
# Ubuntu Samba | |
# sudo apt install samba system-config-samba | |
#sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* WP Malware Removal | |
* | |
* @package WP Malware Removal | |
* @author Shivanand Sharma | |
* @copyright 2018 ConverticaCommerce.Com | |
* @license MIT | |
* | |
* @wordpress-plugin |