All Questions
3 questions
0
votes
1
answer
243
views
Zsh script to recursively unrar into a folder with the same name [duplicate]
Is it possible to use a zsh script to unrar all directories within another directory?
As follows:
dir
|_dir1.rar
|_dir2.rar
|_dir3.rar
I would like the command not to include the cd. I will cd into ...
0
votes
1
answer
48
views
Script input data run commands based off it
Not sure where to begin I only know basic text processing.
I am trying to create a script that will search for zfs snapshots based off a VM name (given as a command parametet) and then select the ...
1
vote
1
answer
135
views
Zsh: =() substitution with executable permission
I need to give an executable file to this command:
aria2c “some-url” —on-download-complete =(echo “!#/usr/bin/env bash
touch success”)
Is this possible? If not, can I implement some helper functions ...