Tagged Questions
0
votes
1answer
79 views
Linux route add with subdomains wildcard -host *.domain.com
if I have a script with the following two commands to modify a route
/sbin/route add -host pandora.com -interface ppp0
/sbin/route add -host internal-tuner.pandora.com -interface ppp0
Is there a way ...
1
vote
2answers
28 views
Perform a command on multiple files using command line
Say I have the following files:
myfile1_1.dat
myfile1_2.dat
myfile2_1.dat
myfile2_2.dat
...
and I want to use the same command on each of them (whilst ignoring other files in the directory that do ...
0
votes
1answer
87 views
How do I create subdirectories with wildcard names, Linux
I need to make a few sub directories, but the names need to completely be wildcards.
Ex: *** ???
How do I eliminate their special meaning? I thought it was just quotes, but it does not seem to be ...
0
votes
2answers
178 views
Linux: copy all files using the * wildcard that contain the word file [closed]
I've worked all night on this, but haven only solved part of the problem. I am trying to copy all files using the * wildcard that contain the word file in the filename into the work directory.
2
votes
2answers
77 views
stopping Linux shell while it is resolving (i.e. expanding) wildcards
In a typical Linux shell, you can use Ctrl+c to stop execution of a command. If you have started a run that uses wildcards (such as *) to find all files with a certain pattern, and if you have many ...
0
votes
1answer
139 views
Is GNU make wildcard able to match more complex patterns, like a regexp for example?
Let's say I have the following wildcard matches in a makefile:
data-files = $(wildcard $(ptdf)/*.png) \
$(wildcard $(ptdf)/*.gif) \
$(wildcard $(ptdf)/*.bmp) \
$(wildcard $(ptdf)/*.jpg) \
...
0
votes
2answers
147 views
Linux Symbolic Link Append Name
Can someone help create a symbolic link where I append my own string to the name of the link? Here's the code that I have so far:
find /home/folder1/*.txt -type f -exec ln -s {} \;
find ...
1
vote
4answers
128 views
Linux Find Command
What am I doing wrong with the FIND command? I can't figure out why this works:
find /home/michael/foxpro/mount/A1/[12][0-9][0-9][0-9] "*.dbf" -type f -exec ln -s {} \;
find ...
2
votes
2answers
55 views
How do I exclude a character from a range in a character class?
How do I combine the following lines for one character:
> ls file[1-5]
> ls file[!3]
To produce the same result as:
> ls file[1-2,4-5]
> file1 file2 file4 file5
0
votes
1answer
72 views
Using two asteriks to add a file in git
I want to add a file which has a unique file name but a long preceding path (e.g. a/b/c/d/filename.java). Normally I would add this to my repository by doing
git add *filename.java.
However I have ...
2
votes
2answers
372 views
Using wildcards to exclude files with a certain suffix
I am experimenting with wildcards in bash and tried to list all the files that start with "xyz" but does not end with ".TXT" but getting incorrect results.
Here is the command that I tried:
$ ls -l ...
1
vote
1answer
159 views
in a makefile, declaring a phony target as a wildcard
I want to declare my wildcard target as phony, but phony doesn't support wildcards:
My makefile:
%.config:
gcc <<compile>>
I want the user to be able to use my makefile to ...
1
vote
0answers
100 views
wildcard in .screenrc chdir
I'm trying to build a .screenrc that fits my needs.
For this I want to do a chdir to a directory of which I don't know the exact name.
In Bash I'd just do
cd /path/to/some-V4.3.*/sub/directory/
to ...
5
votes
3answers
2k views
rsync not synchronizing .htaccess file
I am trying to rsync directory A of server1 with directory B of server2.
Sitting in the directory A of server1, I ran the following commands.
rsync -av * server2::sharename/B
but the interesting ...
2
votes
1answer
1k views
grep like syntax with findstr
ive been using grep a lot on linux lately but now i need to use findstr to carry out the same tasks on a windows machine and cant quite get the syntax just right.
My grep command looks like:
grep ...
0
votes
4answers
202 views
Linux wildcard not behaving correctly
I will be running a list of processes that will have the following naming conventions:
a_feed
b_feed
c_feed
...
I have written a bash shell script that will allow me to filter out the processes ...
3
votes
3answers
2k views
How do I use sed to remove decimal numbers from a string?
I have the following string as an example:
ex. "Abandoned 16 1.10 2.62 3.50"
I would like to pipe this result to sed and remove all decimal numbers to leave me with the following:
ex. "Abandoned 16"
...
0
votes
2answers
570 views
save wild-card in variable in shell script and evaluate/expand them at runtime
I am having trouble running the script below (in Cygwin on win 7 mind you).
Lets call it "myscript.sh"
When I run it, the following is what I input:
yearmonth: 2011-03
daypattern: 2{5,6,7}
...
2
votes
5answers
286 views
1 domain.. 2 server and 2 applications
i have a site like twitter.com on server one and on server two i have forum, which path is like domain.com/forum
on server one i wanted to implement wild card dns and put main domain on it. but on ...
1
vote
3answers
2k views
Linux command to do wild card matching
Is there any bash command to do something similar to:
if [[ $string =~ $pattern ]]
but that it works with simple wild cards (?,*) and not complex regular expressions ??
More info:
I have a ...
1
vote
1answer
514 views
ftp multiple new files using wildcards
I was wondering if there is a way to use ftp to only get files that match a wildcard if the files is newer than the local copy?
I know I can use mget * but that will get everything and I only want to ...