trngaje / rg35xxh_binary

9 stars 2 forks source link

tar can also un-gzip #5

Open Skeeve opened 3 days ago

Skeeve commented 3 days ago

in your install script I saw:

  gzip -d "${mydir}/source/drastic-steward.tar.gz"
  tar -xvf "${mydir}/source/drastic-steward.tar" -C /mnt/mmc/MUOS/emulator/

Tryinstead:

  tar -xvzf "${mydir}/source/drastic-steward.tar.gz" -C /mnt/mmc/MUOS/emulator/

That saves some space.

trngaje commented 3 days ago

thanks for your response. When I first applied it, the tar -xvzf command didn't work, so I divided the command into two. I don't need this script anymore because drastic steward is included in muos recently.