Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have the task: I have the Windows-made rar-archive (folders, files in it and so on), that via FTP was copied to Linux server.
I want to unrar this archive to keep the file structure as it was in Windows - with folder.
rar у my_archivive
works, but I have just the list of files without folders.
How to do it ?
Thanks.
man unrar says
x Extract files with full path.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Hi all I have a folder full of different format like the one that I am interested in are .png and .txt and I want to copy them in another folder from the terminal in Linux. Someone know how to that?
Simple Use cp command in Linux
=> Example:
cp *.txt /destination/folder/location/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I have an executable file ffmpeg in /home/juping/. If I change my working directory to /home/juping/ with the command cd /home/juping/, I can run the executable file ffmpeg by running ./ffmpeg. If I do not change the working directory, can I then still run the executable file by its full path like .//home/juping/ffmpeg? I tried but it doesn't work.
You can execute it by typing
/home/juping/ffmpeg
The ./ point to current directory.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have the following directories, I want to zip up into the same zip file. Can someone provide the correct syntax?
ie. zipping the following directories:
/home/users/jlefler/files
/opt/software/reports/files
into a zip file called backup.zip.
try
zip -r backup.zip /home/users/jlefler/files /opt/software/reports/files
you can add more directories at the end of the command
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I need to extract a multi part rar archive in the form of archive_1.exe archive_2.rar archive_3.rar. How can I do this in linux?
I have tried unrar and 7z but unrar x archive_1.exe is extracting files with the reverse path format (eg. \file\dir) and 7z is unable to extract beyond the first file.
Any suggestions are welcome!
cd /path/to/your/download
unrar x filename.of.part1.rar
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Guys I am new to Linux ... please I want a command to put directory I made to trash in red hat Linux 6 in GUI mode ...
Any help is appreciated
Thanks in advance
the trash bin in linux is simply a hidden folder like .Trash, so you simply have to move your files/folders to the bin folder in the same root :
mv test .Trash