-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
is there any support or way to use for .7z
files?
#235
Comments
Hi @candrapersada!
Currently no, but I think it can be added.
I'm not sure what you mean. If you want to download and install executable files check out examples |
Hi @candrapersada! You can download latest release 0.6.3 to install from 7-Zip files. In order to work, you need to install Let me know if there are any issues! |
how to update from 0.6.2 to 0.6.3? |
|
will there be a feature to update |
I don't think so. The way you update If you used a package manager, like Homebrew or pacman, use that to update |
|
I suppose you are in this directory: You cannot replace dra with a new version while the dra process is running. You need to go to another directory, run the dra command I told you and then move the new dra.exe to |
is it possible to add |
I use this on linux for the first time dra installation: https://github.com/devmatteini/dotfiles/blob/7fe2d8af46e21364386c8bbc9850576226ed2289/bootstrap/dependencies.sh#L18-L23 You can modify it to work on windows. To update it I use |
how to use in windows? |
In git bash you can use it like this:
I don't use windows very often so I can't help you with powershell or command prompt. But again I'm not quite sure what you are trying to solve. If you try to explain your problem, maybe I can help you. |
install and update |
If you use a .sh file, use the above script:
This will install and update dra to the latest version available. |
how to use
from linux or windows |
function download_dra() {
filename=$1
TMP_DIR=$(mktemp --directory)
ARCHIVE="$TMP_DIR/dra.zip"
curl -s https://api.github.com/repos/devmatteini/dra/releases/latest \
| grep "browser_download_url.*x86_64-pc-windows-msvc" \
| cut -d : -f 2,3 \
| tr -d \" \
| xargs -I {} curl -Lo "$ARCHIVE" {}
unzip -j "$ARCHIVE" -d "$TMP_DIR"
mv "$TMP_DIR"/dra.exe "$filename"
}
download_dra "/some/path/to/dra.exe" Once you have dra installed, you can you use it to download other tools from GitHub. |
what I mean is Trying to do a script to download a file using wget, or curl if wget doesn't exist in Linux and Windows. How do I have the script check for existence of wget?
download_dra |
You should search that question on google: If you have questions related to |
how to clean |
You don't have to. Temporary files are deleted automatically on a regular basis |
is there any support or way to use
--install
for.7z
files?and how to use for
ffmpeg.exe
ffplay.exe
andffprobe.exe
one download?The text was updated successfully, but these errors were encountered: