Let's say you want to host domains first.com and second.com.
Create folders for their files:
| #/bin/sh | |
| speed="1.15" | |
| mkdir "speed-${speed}x" | |
| for f in *.mp3 | |
| do ffmpeg -i "$f" -filter:a "atempo=${speed}" "./speed-${speed}x/$f" | |
| done |
| #!/bin/bash | |
| # Set up local and remote credentials | |
| LOCAL_WP_PATH="/nas/content/live/asianlegacylib" # Change to your WordPress directory path | |
| LOCAL_UPLOADS_PATH="${LOCAL_WP_PATH}/wp-content/uploads" # Local uploads directory path | |
| DB_BACKUP_PATH="${LOCAL_WP_PATH}/wp-content/_db_backups" # Local backup directory | |
| DB_BACKUP_NAME="_wp_prod_backup_$(date +%F_%H-%M-%S).sql" # Backup file name with a timestamp | |
| TAR_BACKUP_NAME="${DB_BACKUP_NAME}.tar.bz2" # Tar Backup file name with a timestamp | |
| <?php | |
| // Check if the input file exists | |
| $inputFile = "_input_file_name.txt"; | |
| // Function to break a line into two parts, aiming for equal number of characters, without breaking words | |
| function breakLineEqually($line) { | |
| $length = strlen($line); | |
| $mid = intdiv($length, 2); |
| #!/usr/bin/env bash | |
| ########################################################################## | |
| # Shellscript: Backup and update WordPress using wp-cli | |
| # Author : Paco Orozco <[email protected]> | |
| # Requires : wp-cli | |
| ########################################################################## | |
| # Changelog | |
| # 20170125: 1.0 | |
| # Adds a default option to upgrade only when it's needed. | |
| # 20161220: 0.1 |
| #!/bin/bash | |
| # Interval of calculation in seconds | |
| INTERVAL="1" | |
| if [ -z "$1" ]; then | |
| echo | |
| echo usage: $0 [network-interface] | |
| echo | |
| echo e.g. $0 eth0 |
| #!/bin/bash | |
| # Following the guide found at this page | |
| # http://programmingarehard.com/2014/03/17/behat-and-selenium-in-vagrant.html | |
| echo "\r\nUpdating system ...\r\n" | |
| sudo apt-get update | |
| # Create folder to place selenium in |
| # Ignore configuration files that may contain sensitive information. | |
| sites/*/*settings*.php | |
| # Ignore paths that contain generated content. | |
| cache/ | |
| files/ | |
| sites/*/files | |
| sites/*/private | |
| # Ignore default text files |
| #!/bin/sh | |
| # | |
| # /etc/init.d/tomcat -- startup script for the Tomcat 7 servlet engine | |
| # | |
| # Modified init-Script from Ubuntu Tomcat init-script | |
| # | |
| # 2010 - Sebastian Mogilowski - http://www.mogilowski.net/2010/12/11/install-tomcat-7-on-debian-lenny-with-virtual-hosts-and-apache2-integration/ | |
| # 2012 - Collin Peters - Added debug option | |
| # | |
| ### BEGIN INIT INFO |
| #! /bin/sh | |
| # ================================================================== | |
| # ______ __ _____ | |
| # /_ __/___ ____ ___ _________ _/ /_ /__ / | |
| # / / / __ \/ __ `__ \/ ___/ __ `/ __/ / / | |
| # / / / /_/ / / / / / / /__/ /_/ / /_ / / | |
| #/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/ | |
| # Multi-instance Apache Tomcat installation with a focus | |
| # on best-practices as defined by Apache, SpringSource, and MuleSoft |