similar to: How to allow user entered wildcards in find?

Displaying 20 results from an estimated 30000 matches similar to: "How to allow user entered wildcards in find?"

2018 Jun 25
3
doveadm: problem listing shared mailboxes using a wildcard
I'm setting up a dovecot server with private and shared namespaces. My test setup has these mailboxes: # /bin/doveadm mailbox list -u fdl01 at spike.test INBOX/sub01 shared shared/sammel01 at spike.test shared/sammel02 at spike.test INBOX In order to do some post-login scripting foo I'd like to get a list of shared mailboxes the user is currently subscribed to. The doveadm-mailbox man
2007 Apr 01
1
FLAC: Windows wildcards support
Hi, I have read this on the sourceforge site: Windows wildcards support for FLAC and Metaflac *Private: (?)<javascript:help_window('/help/tracker.php?helpname=private')> * No The Linux shell support wildcards but not the Windows shell. Would it be possible to add wildcard support for Windows? Example with Windows: metaflac --add-replay-gain *.flac Gives the following error:
2008 Apr 11
2
DO NOT REPLY [Bug 5388] New: wildcards and rsync 3.01+
https://bugzilla.samba.org/show_bug.cgi?id=5388 Summary: wildcards and rsync 3.01+ Product: rsync Version: 3.0.2 Platform: x86 OS/Version: FreeBSD Status: NEW Severity: major Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: support@reverse.net QAContact:
2014 Feb 04
1
Samba4 internal DNS wildcards
Hi folks, Can't seem to find any info on this one. I've done a Samba3 classic upgrade to Samba4 on my test rig which has gone very well so far. All users and groups look good, I'm using NSLCD to view creds on my *nix boxes and I'm generally a happy camper, but... I can't seem to get DNS wildcards working. I create a new domain under main search domain in Forward Lookup Zones
2020 Feb 19
2
[Bug 3123] New: PermitOpen does not allow wildcards for hosts despite what docs say
https://bugzilla.mindrot.org/show_bug.cgi?id=3123 Bug ID: 3123 Summary: PermitOpen does not allow wildcards for hosts despite what docs say Product: Portable OpenSSH Version: 7.2p2 Hardware: Other OS: Linux Status: NEW Severity: normal Priority: P5 Component: sshd
2008 Aug 21
1
wildcards and prefix searches
Hey all, I'm using Xapian through acts_as_xapian and would like to know why trailing wildcards do not work on prefix searches. Specifically, I have a Merchant model with a Description field, mapped to the prefix "desc". If I then search for "desc:goods" I get 4 matches, but if I search for "desc:goo*" I get 0. However, when searching normal, non-prefixed
2016 Nov 09
2
search body with wildcards
Hi, A question. We are using fts_solr. When searching for content in BODY I noticed that dovecot only supports full words. "BODY calibration" returns results but "BODY calibra" does not. Nor "BODY calibra*". Solr does support searching with wildcards so why is it that dovecot does not? regards, -- Willem-Jan de Hoog
2007 Apr 25
2
R-2.5.0 and unlink/wildcards
It seems unlink doesn't work with wildcards in 2.5.0. I've tried R-2.5.0 under gnu/linux from source and the Mac binary from att research. Example: > dir() [1] "bgx.Rnw" "bgx.pdf" "run.1" > unlink("run.*",recursive=T) > dir() [1] "bgx.Rnw" "bgx.pdf" "run.1" > unlink("run.1",recursive=T)
2007 Oct 15
2
Wildcards
Care to explain how i can use a wildcard expression to "source" all files ending with .R in a subdirectory ? I've tried something like this 'source(glob2rx("*.R"))' without success. Thank you -- View this message in context: http://www.nabble.com/Wildcards-tf4627981.html#a13214214 Sent from the R help mailing list archive at Nabble.com.
1999 Dec 15
2
DOS wildcards w/ 2.0.5a
I've recently set up a new server running RH 6.1 and Samba 2.0.5a. All our older servers are running 1.9.18p10, and were left that way on the "If it ain't broke" principle. On the new server, I've noticed that DOS wildcards don't work correctly for some (but not all) old 16-bit DOS programs running under Win95/98. The symptom is that the program only
2007 Feb 22
1
Wildcards
Hello, Thanks Olly , by following to your suggestion I could do the indexing in the CSV file while the search results retrieved from the Postgres and it's working fine. [ I am using the Xapian PHP-binding to index and search.] How could I enable the WILDCARDS in it ? I followed with the online manual which says it is disabled by default there given some method to enable but I am not
2017 Jun 03
15
[Bug 1154] New: Allow include statement to operate on directories and/or wildcards
https://bugzilla.netfilter.org/show_bug.cgi?id=1154 Bug ID: 1154 Summary: Allow include statement to operate on directories and/or wildcards Product: nftables Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component: nft
2007 Aug 28
1
using wildcards on node
Hello, Can I use wildcards on the node''s name/address? For example, I want something like this: node ''server-*.domain.com'' { .... } where ''*'' is a number. If this is not possible, there''s another way of reaching this behaviour? Thanks.
2013 Jul 02
1
wildcards and nested files
I'm trying to use wildcards and nested files and I think there must be a better way than what I'm doing. If I want to copy only these two directories: /etc /home/*/.maildir Is this the best way to do it: rsync -arzv --delete-excluded --files-from 'files-from.txt' --include-from 'include-from.txt' --exclude-from 'exclude-from.txt' / rsyncuser at hostname:
2008 Jan 08
1
using sub with "wildcards", e.g. sub("\\*..", "", "test.a..34")
I have a text string "test.a..34" I wish to extract the text that comes after ".." (e.g. "34"), and the text that comes before ".." (e.g. "test.a"). What is a good way to do this? Also, can you help me understand how to use "wildcards" such as "*" with sub, etc? #This seems to work, but I am unclear how it
2012 Apr 12
1
using wildcards in download.file?
Hi, Do you know whether it is possible to use wildcards in download.file()? For example: url = "ftp://abc.com/*.*" # to download all the files in the ftp folder download.file(url,destfile=...) # does not work, any solutions? Thanks! JIng
2007 Mar 08
2
Removing duplicated rows within a matrix, with missing data as wildcards
I'd like to remove duplicated rows within a matrix, with missing data being treated as wildcards. For example > x <- matrix((1:3), 5, 3) > x[4,2] = NA > x[3,3] = NA > x [,1] [,2] [,3] [1,] 1 3 2 [2,] 2 1 3 [3,] 3 2 NA [4,] 1 NA 2 [5,] 2 1 3 I would like to obtain [,1] [,2] [,3] [1,] 1 3 2 [2,] 2 1 3
2004 Jul 21
2
ENUM lookup help
Hello everyone, I playing around with ENUM and have configured * to query a few sources for testing purposes (fierymoon, e164.arpa, e164.org). I'd like to know if there is a way to query these servers manually (ie outside of asterisk via nslookup or equivalent) to find out if particular exchanges are listed with wildcards, so as to terminate calls to those prefixes (I'm not trying to
2004 Dec 08
7
more then two wildcards in one machine
Has anyone had successfully installed more then two digium wildcards in the same machine? I'm going for four. thanks Shoval Tomer, IT Manager, SofTov Advanced Systems, Ltd. Office: +972-3-9230686 ext. 179 Fax: +972-3-9216642 Mobile: +972-54-8000200
2006 Nov 29
5
AR, find(:all), loops and memory usage
I''m a beginning programming using ActiveRecord outside of Rails to do conditional processing of database records. So far, I''ve been successful. However, my script loads all matching records into memory first. There are hundreds of thousands of matching records so the script quickly consumes over 500MB of RAM before any processing is done. Is there a way to avoid this preloading