11 lines
373 B
Bash
Executable File
11 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
#Benjamyn Love 2017
|
|
#this script will setup a test environment to test the .htaccess scripts/commands on
|
|
|
|
#make directories to simulate client guff
|
|
mkdir blog shop dev staging
|
|
mkdir blog/images shop/products
|
|
|
|
#create the .htaccess files
|
|
touch .htaccess blog/.htaccess blog/images/.htaccess shop/.htaccess shop/products/.htaccess dev/.htaccess staging/.htaccess
|