mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 22:30:51 +00:00
4 lines
168 B
Bash
Executable File
4 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
cd /home/bruno/Apps/piholeDocker
|
|
docker-compose exec pihole tail -f /var/log/pihole.log | awk '/from/ { printf("%s %2s %s %40s %s\n", $1, $2, $3, $6, $8 ) }'
|