As long as the process of wget still has the file open, the data remains on disk, but no longer accessible by filename because you removed a hard link to the file data on the disk.
The file was deleted in the directory structure, but wget was still writing to it invisibly.
The OS kept the file's data alive because wget still held a file descriptor to it and continued writing data to the now unlinked file.
wget finished and closed the file, the os freed the remaining disk space since no proces was using it anymore.
After completion, wget closed the file handle, and normal the OS cleaned up the orphaned data.
Orphaned data refers to data that is no longer associated with a corresponding record or entity in a database, data storage or other information system. This situation typically arises when a record, file, or object is deleted, but the associated data remains in the system without a proper link to a parent entity.
An orphaned inode is an inode which isn't attached to a directory entry in the filesystem, which means it can't be reached.....
wgetstill held a reference to it.