mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-20 10:55:01 +00:00
14 lines
577 B
Bash
Executable File
14 lines
577 B
Bash
Executable File
#!/bin/bash
|
|
#parse_filesystems samples/df-mount-004.txt Linux
|
|
|
|
cat <<EOF > $1
|
|
Filesystem Size Used Type Opts Mountpoint
|
|
/dev/sda1 9.9G 34% ext3 rw /
|
|
/dev/sdb 414G 1% ext3 rw /mnt
|
|
none 7.6G 0% devpts rw,gid=5,mode=620 /dev/shm
|
|
none 7.6G 0% tmpfs rw /dev/shm
|
|
none 7.6G 0% binfmt_misc rw /dev/shm
|
|
none 7.6G 0% proc rw /dev/shm
|
|
none 7.6G 0% sysfs rw /dev/shm
|
|
EOF
|