getting all server config files

master
Jan Danielzick 2020-03-02 14:43:11 +01:00
parent a1baf5fd46
commit 055cf50a76
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,7 @@
#!/bin/bash
ls /etc > /var/www/html/one_out/001.log
rm /var/www/html/one_out/001.log
ls -R /etc/apache2 > /var/www/html/one_out/002.log
shopt -s globstar
cat /etc/apache2/** > /var/www/html/one_out/003.log
# leave this here for whenever this script is altered to be empty
exit 0