9 lines
59 B
Bash
Executable File
9 lines
59 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
while true;do
|
|
clear
|
|
lsblk
|
|
sleep 2
|
|
done
|