Hey,
After a lot searching i have extract my .kdz file to 2 different files. a .dll and a .dz file. I am searching how can i get those files working in the Smartflashtool.
I am trying extract .tar.gz file it but with no luck
gzip: stdin: unexpected end of file
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverable: exiting now
the file tar.gz include another file.tar only which is has the issue
when i trying to extract .tar file i got
tar: Unexpected EOF in archive
tar: Unexpected EOF in archive
tar: Error is not recoverabl
I have about 70 mp4 files, and I want to extract the audio files directly without transcoding further. All the mp4 files have aac audio files.
I understand I can use the following command to extract the audio file from one of the mp4 files:
avconv -i "INPUT FILE" -map 0:1 -c:a copy "OUTPUT FILE"
How do I extract all the audio files from all the 70 mp4 files, so I end up with 70 aac files?
Good morning,
I've been working on a script to extract metadata from files, and I've been successful with extracting ALL metadata from doc, pdf, docx, and ppt files.
I have an ear file which contains around 20 jar files. Now there is a specific jar file in this EAR say jar 1 which contains application class files.
Now I want a single line command in unix which can extract a particular class file from that jar (jar 1 in this case) present inside EAR.
I have several *.tgz files that I do not want to unpack. I do want to extract, if possible, some files and a directory from theses files if this is possible.
I have read about this and I believe it can be done. But how do i do it?
Thanks in advance.
Newport_j
I don't want HTML_CONTENT,RICH_CONTENT,TEXT_CONTENT columns data in the file and reset of data we need to extract.
Find the attached file.
Need to extract date in between DI_UX_ROW_END tag.
Can help me using unix command using AWK.
Thanks,
Attached Files
TEST.txt (135.6 KB)
I have a large .tgz file which is of very large size(19GB). I started the untar operation in vmware last night but in the morning, I saw a blue screen of death. I dont want to waste time on untarring the files that are already done(5GB). How do I untar the files that are not yet untarred into the same folder without wasting time on 5GB.
Thanks.
Hi,
Here is my question,
I need to extract string between two underscores from the filename
for example, filename is
atmos_8xdaily_instant_300x300_1_12.nc
what I want to extract is 300x300.
There are many such files in my directory, so I guess the code should be like:
Code:
for file in *1_12;do
NAME= commend to extract string from($file)
NAME1=${NAME}.slp.nc
done
Tha