mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-04-26 01:02:25 +08:00
a9e002cc5a
Update and simplify copyright notices.
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
|