Change printf to print in getdisk function
This commit is contained in:
parent
21edcc0eb9
commit
8b606395d1
1 changed files with 1 additions and 1 deletions
2
fetch
2
fetch
|
@ -1015,7 +1015,7 @@ getdisk () {
|
|||
esac
|
||||
|
||||
# Get the disk info
|
||||
disk=$(df $df_flags 2>/dev/null | awk '/total/ {printf $2 ":" $3 ":" $5}')
|
||||
disk=$(df $df_flags 2>/dev/null | awk '/total/ {print $2 ":" $3 ":" $5}')
|
||||
|
||||
# Format the output
|
||||
disk_used=${disk#*:}
|
||||
|
|
Loading…
Reference in a new issue