Compare commits
29 Commits
a2f80aa7a2
...
f738ce4568
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f738ce4568 | ||
|
|
18016f86c9 | ||
|
|
12507b1e1a | ||
|
|
9c2ff0fafb | ||
|
|
096ab5ef9d | ||
|
|
c7b428d4fd | ||
|
|
4e052a33d4 | ||
|
|
eb45983613 | ||
|
|
12da4f5259 | ||
|
|
0cf8ee09b4 | ||
|
|
c5815669e2 | ||
|
|
b067454799 | ||
|
|
b4d65f15aa | ||
|
|
0f259c6b3f | ||
|
|
a2a576f14b | ||
|
|
e335d42156 | ||
|
|
800525d90b | ||
|
|
fba7d5d0fd | ||
|
|
3c9d8fdfe1 | ||
|
|
1d8ef90968 | ||
|
|
a44fc069fe | ||
|
|
6e1a85199c | ||
|
|
cb64b5749c | ||
|
|
fb35fea3e0 | ||
|
|
fdcdbbacde | ||
|
|
97e47d1d0b | ||
|
|
b6110cf626 | ||
|
|
656767af2b | ||
|
|
ce1ff7aff5 |
15
atom
15
atom
@ -550,9 +550,9 @@ done
|
|||||||
echo 'COMMIT;' >&3
|
echo 'COMMIT;' >&3
|
||||||
(( cron )) || echo -n $'\r\033[K'
|
(( cron )) || echo -n $'\r\033[K'
|
||||||
(( count )) \
|
(( count )) \
|
||||||
&& echo "Created $count tasks for $filecount files" \
|
&& echo "Created $count tasks for $filecount files \
|
||||||
"${togo:+($togo left) }" \
|
${togo:+($togo left) } \
|
||||||
"${copies:+($copies immediate copies)}"
|
${copies:+($copies immediate copies)}"
|
||||||
|
|
||||||
# remove perl unicode to ascii coprocess
|
# remove perl unicode to ascii coprocess
|
||||||
(( textunidecodeneeded )) && eval exec "${toascii[1]}>&-"
|
(( textunidecodeneeded )) && eval exec "${toascii[1]}>&-"
|
||||||
@ -675,17 +675,20 @@ endtime=$EPOCHSECONDS
|
|||||||
elapsedseconds
|
elapsedseconds
|
||||||
/
|
/
|
||||||
( 24*60*60 )
|
( 24*60*60 )
|
||||||
)) || unset days
|
)) || true
|
||||||
|
(( days )) || unset days
|
||||||
(( hours =
|
(( hours =
|
||||||
( elapsedseconds - ( days*24*60*60 ) )
|
( elapsedseconds - ( days*24*60*60 ) )
|
||||||
/
|
/
|
||||||
( 60*60 )
|
( 60*60 )
|
||||||
)) || (( days )) || unset hours
|
)) || true
|
||||||
|
(( days && hours )) || unset hours
|
||||||
(( minutes =
|
(( minutes =
|
||||||
( elapsedseconds - ( ( days*24 + hours ) *60*60 ) )
|
( elapsedseconds - ( ( days*24 + hours ) *60*60 ) )
|
||||||
/
|
/
|
||||||
60
|
60
|
||||||
)) || (( days || hours )) || unset minutes
|
)) || true
|
||||||
|
(( days && hours && minutes )) || unset minutes
|
||||||
(( seconds =
|
(( seconds =
|
||||||
elapsedseconds
|
elapsedseconds
|
||||||
-
|
-
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user