11 lines
216 B
Bash
11 lines
216 B
Bash
#!/bin/bash
|
|
|
|
# /usr/local/bin/
|
|
# backup-status by htrigg
|
|
#
|
|
# Displays the mounted media disks and the backup directories
|
|
|
|
tput setaf 2;df -h | awk '$6 ~ "media"'
|
|
tput sgr0;ls -ltr --color=auto /media/corin/BACKUP
|
|
|