8 lines
386 B
Bash
Executable File
8 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
#Benjamyn Love 2017
|
|
#renames the .htaccess.vipback to .htacces
|
|
#
|
|
|
|
#find . -name ".htaccess.vipback" -printf %h\\n | while read a; do mv -v $a/.htaccess.vipback $a/.htaccess; done
|
|
if [[ "$PWD" == "/home/"?* ]]; then find . -name ".htaccess.vipback" -printf %h\\n | while read a; do mv -v $a/.htaccess.vipback $a/.htaccess; done; else echo "Not in a users home directory"; fi
|