Skip to content

Instantly share code, notes, and snippets.

@biblia19
Created September 27, 2020 08:53
Show Gist options
  • Save biblia19/9f3c3019f1c07d677f277f3165b63b20 to your computer and use it in GitHub Desktop.
Save biblia19/9f3c3019f1c07d677f277f3165b63b20 to your computer and use it in GitHub Desktop.
Automation Rename Folder from Wordpress
#!/bin/bash
for i in {1..70}
do
site="$(sed -n ${i}p folder_txt_file)"
unzip -q latest.zip
mv wordpress $site
chown -R www-data:www-data $site
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment