Question about apply '!mv' after '!unzip'

Hi - I’m wondering why the programming cannot find the file I just unziped. (I did not save it to a specific path.) Details are shown in the picture I attached.

The error showed is “mv: cannot stat ‘WIKI_PRICES_212b326a081eacca455e13140d7bb9db.csv’: No such file or directory’ after I unziped the file.”

Thanks!
Julia

That is strange behaviour, it works prefectly for me, maybe put all your code in one block:

!wget https://open-data.s3.filebase.com/WIKI_PRICES_212b326a081eacca455e13140d7bb9db.zip
!unzip WIKI_PRICES_212b326a081eacca455e13140d7bb9db.zip
!mv WIKI_PRICES_212b326a081eacca455e13140d7bb9db.csv wiki_prices.csv
!rm WIKI_PRICES_212b326a081eacca455e13140d7bb9db.zip

Yep it works now! Thanks!