Install Date: Added ls command for Toybox

This commit is contained in:
Muhammad Herdiansyah 2017-01-01 19:54:24 +07:00
parent b8af8fd69a
commit fbb268edc8
1 changed files with 1 additions and 0 deletions

View File

@ -1765,6 +1765,7 @@ get_install_date() {
case "$ls_prog" in
*"BusyBox"*) install_date="$(ls -tdce "$install_file" | awk '{printf $10 " " $7 " " $8 " " $9}')" ;;
*"crtime"*) install_date="$(ls -tdcE "$install_file" | awk '{printf $6 " " $7}')" ;;
*"ACFHLRSZ"*) install_date="$(ls -dl "$install_file" | awk '{printf $6 " " $7}')" ;;
*"GNU coreutils"*) install_date="$(ls -tcd --full-time "$install_file" | awk '{printf $6 " " $7}')" ;;
*) install_date="$(ls -dlctT "$install_file" | awk '{printf $9 " " $6 " "$7 " " $8}')" ;;
esac