I would like to unzip a tgz file located on azure databricks file system.
display(dbutils.fs.ls("dbfs:/my_data/MY_zipfile.tgz"))
I can see the file but how I can unzip it ?
It is an application file and I need to unzip it and compile it.
I tried this in databricks notebook:
%sh
unzip dbfs:/my_data/MY_zipfile.tgz
but, the file cannot be found.
It seems that the shell cannot access it ?
Thanks