-
-
Notifications
You must be signed in to change notification settings - Fork 45
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
Feature Request | UNC path auto completion #394
Comments
Even the following is a issue for it self, I do add it here as it is related to. It come to me 💭 today, why is it we do not have the option that allows PyFunceble to automatically search for sources recursively in a folder? Reason, if we take @mypdns #matrix, we'll see that, it holds 143 files in 30 folders, typing each and everyone manually... ✍🏻 ? Note: Don't worry, I know how to use find and then search replace the lines ending with spaces find source/ -type f -iname "*\.csv" -print0 | sed 's/\.csv/\.csv /g' See also note: https://matrix.to/#/!LZPGrkkYYQNLRTuSNr:matrix.org/$GYqVPUt_iIy2EWGeU_55D33V9ecyjZkh1PPaZuGxy6Y |
Just got this error in relation to the previous comment
And changing it to a loop will just replace previous results in a never ending loop, till all sources have been tested #!/usr/bin/env bash
find source/ -type f -iname '*\.csv' | while IFS= read -r i; do
echo ""
echo "Now testing ${i}"
pyfunceble --dns 127.0.0.1 --database-type csv -a -ex --color -c \
-f "${i}"
done
|
What is the feature you'd like to request?
When you are using PyFunceble on a *nix system (Who doesn't) and you will test a local file, then you use the
-f
flag, however it do not support the tab for auto-completion ofpath/file
as all *nix users would be expecting. They are just used to this is standard everywhereWhat problem are you trying to solve?
Auto-complete by tabulator key tab
What solution would you like to see?
I'd like to see a solution that... ⏫
Are there any alternatives you've considered?
I've considered alternatives such as... going into sleep mode 😴
Additional context
I would like to add...
The text was updated successfully, but these errors were encountered: