12 lines
119 B
Bash
12 lines
119 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
while true; do
|
||
|
size=$(du -sh $1 | cut -f1)
|
||
|
echo "Loading roaming profile: $size of $2."
|
||
|
sleep 3
|
||
|
done
|
||
|
|
||
|
|
||
|
|