The redirection tag has no wiki summary.
0
votes
2answers
50 views
In windows, can I redirect stdout to a pipe in command line?
Is there a way to redirect the standard output of a something in windows command line to a pipe?
Possibly with something like asdf.exe >\\.\some_pipe_thing\something.
The current motivation is to ...
0
votes
0answers
22 views
Website configuraiton for SEO Optimization [migrated]
In order to promote our product in the various search engines, we've changed our index.html
to redirect to ourapp.com/product/index.html and moved all our HTML code to ourapp.com/product/index.html
...
0
votes
1answer
34 views
.htaccess speed vs. symlink or DNS setting I don't know about?
This is probably a very simple question, but there's so much content out there that it was hard to google the correct problem I have.
I have 3 domains that I all want to go the very same place, ...
2
votes
1answer
92 views
How to block someone that redirected his email spams to your email address?
I have two friends (yes, belive or not they are my friends) that are redirecting all the email spam they receive to my email address. This makes my Hotmail account receive 30 spams per hour (that not ...
1
vote
1answer
35 views
How do I know if my packet requests are being redirected from localhost?
So I just had a fun and exciting time trying to figure why on earth a particular computer was able to ping different places on the interweb but not browse any webpages of the same places I was able to ...
2
votes
2answers
69 views
Redirect output of gnome-terminal to file
I have written a script which opens a new terminal using gnome-terminal. The output shown on gnome-terminal is correct. I want this output should be in some file. I have tried this:
gnome-terminal ...
0
votes
0answers
17 views
Change in vhosts nullify .htaccess redirects
I had a bunch of redirects in my .htaccess file
RewriteCond %{HTTP_HOST} ^www.blabla.be
RewriteRule (.*) http://www.blabla.com/nl/link1? [R=302,L]
RewriteCond %{HTTP_HOST} ^www.blabla.com
...
0
votes
1answer
57 views
BIND redirect host without zone
How can I redirect some hosts with my bind server, Like a hots file ( /etc/hosts ).
If I declare a master zone of a external domain, I can't resolve request for subdomain...
3
votes
1answer
32 views
IE Browser redirecting
Have a strange problem
I enter www.google.com in the adress bar of IE and are automatially redirected to fsdata.se.
I have
No entry in hosts file
No plugins or addons in IE
No virus or addware
No ...
0
votes
0answers
30 views
Chrome Residual Redirect to Login Page
My college redirects people in the dorms to a login page when using an ethernet (or wifi) connection. I am now at home, and certain domains keep redirecting to this login page. I've tried running ...
0
votes
2answers
161 views
How to configure my hosting provider for email when DNS redirection already in place?
First of all I apologize for my poor understanding of network and I hope I used the correct terminology for everything:
I have bought a domain name with 1&1 to create an online shop, using ...
4
votes
2answers
212 views
How to redirect to stdin of a running bash shell?
Theoreticly, if I know the pid of the bash shell which is running, I can run a cat whose stdout is redirected to the stdin of that shell. It seems to be as if I type something on that shell. ...
1
vote
0answers
225 views
Redirect IP to url for ISPConfig 3 administration
I am running a debian machine with ISPConfig 3.0.4.3. Yesterday I purchased a RapidSSL wildcard certficate and want to make sure my IPSConfig always loads the admin.mydomain.net url. Even if the user ...
0
votes
2answers
51 views
Spyware propagation over wireless network? How to trace?
Recently at my company, we have been experiencing intermittent search redirects when connected to our wireless network.
I say intermittent because many times, simply disconnecting and reconnecting ...
1
vote
1answer
56 views
redirecting output from several piped commands
This works:
find . -type f | xargs md5sum | sort
This does not and gives several "md5sum: xyz not found" errors:
( find . -type f | xargs md5sum | sort ) >~/md5.txt
Same for:
find . -type f ...
1
vote
1answer
134 views
Redirect http://example.com to 123.123.123.123:8080 in windows
In Windows 7 how do we redirect hostnames to specific IP address AND port.
For example:
example.com redirects to 123.123.123.123:8080
Note 1:
C:\Windows\System32\drivers\etc\hosts can NOT ...
1
vote
0answers
36 views
How to route none http request in pound.cfg
I'm trying to route all request that point on the port 3050 to another host, here is what i usually write in the /etc/pound/pound.cfg:
ListenHTTP
Address 10.165.30.58
Port 3050
...
5
votes
2answers
195 views
how do I echo $something >> file.txt without carriage return?
When I echo $something >> file.txt, a new line will be append to the file.
What if I want to append without a new line?
1
vote
2answers
128 views
Why is find exec grep > file an Infinite Loop?
I was trying to collect all of the Message-ID: headers (lines) in a directory with 200K .eml (plain text) files. A bit naively, I said:
find -type f -exec grep -Fi "message-id:" {} \; > ...
0
votes
1answer
141 views
Is there Firefox preference for controlling JavaScript redirect?
There is a user preference to disallow a sneaky redirect and display a warning instead:
However, extent of this preference seems to be limited to
<META http-equiv="refresh" ...
2
votes
1answer
59 views
Scripted command line with redirection fails
The following works from the command line, but fails as script:
gunzip -c /disk1/hadoop/gunzip_tmp/in/part-00006.gz >> /disk1/hadoop/gunzip_tmp/outfile.000
The following script lines:
...
1
vote
1answer
63 views
Gunzip redirection: “No such file or directory”
When I issue the following command:
gunzip -c /disk1/hadoop/gunzip_tmp/in/part-00006.gz>>/disk1/hadoop/gunzip_tmp/outfile.000
I get the following stderr:
gunzip: ...
0
votes
1answer
252 views
In Firebug, how can I stop a redirect?
In Firebug, how can I stop a redirect? I want to examine and edit a webpage before it redirects. Under the Net tab, using Persist I can see all the GET including the previous pages and the redirect ...
1
vote
1answer
75 views
Pipe and watch piped output?
I want to make a shell-pipe like this:
producer | analyser > report.txt
and watch the output of producer while it is generating data (a big log-file) for analysis.
How can I do that?
1
vote
1answer
59 views
Redirecting output into existing (g)vim instance
Is it possible to redirect the output of a process (in bash) into an existing instance of (g)vim?
Something like:
cat myfile1.txt | awk 'print $1' | gvim -
Then I might start a new window inside ...
0
votes
0answers
34 views
How do I stop Chrome from activating a link on right or middle click? [closed]
Possible Duplicate:
Are there any addons that allow us to middle click any link and open the link in a new background tab in Chrome?
I started browsing the NYT site this afternoon and found ...
0
votes
1answer
616 views
How can I redirect a subdomain to an internal IP?
I have a FQDN let's say abc.com with only one external IP and I use zoneedit.com ns servers.
I have configured www as a CNAME of abc.com. The web server is setup wiith IIS on local computer. What I ...
0
votes
0answers
225 views
STDOUT redirection to a file does not work if Groovy script run directly from command line (.groovy in PATHEXT)
I've updated the title, please see update below for the reason.
I have asked this question on Stackoverflow, but still didn't receive an answer.
Groovy: redirect stdout to a file does not work.
...
1
vote
1answer
118 views
Redirecting input from file to command-line program
I have a command-line program that normally gets its parameters from the keyboard after the program is run. Something like this:
Enter parameter 1? 3
Enter parameter 2? 2.6
Calculate something y/n? y
...
3
votes
2answers
181 views
How to check if your email is redirected or tracked
I would like to ask if there is a way to check if your emails are also sent to another email. I work for company and i think they are ''tracking'' my email adress and want to check if this is true. I ...
0
votes
0answers
200 views
Disable RDP Smart Card redirection on server side in XP
I use an online banking software which uses smart-cards to establish a VPN session to the bank server.
I want to be able to control it over RDP.
The smart card used is actually a multi-purpose USB ...
1
vote
1answer
224 views
My facebook redirect to localhost
I am in strange condition right now. I am not able to access facebook.
Once I open the facebook it just loads the localhost.
I know we can set it from host file. But just have a look at my host ...
1
vote
2answers
176 views
Proxying fake domain to a localhost port
I'd like to do much the same thing described at Redirect Domain Name to Localhost for web app development purposes, but with the twist that I'd like requests to fakedomain.com:80 to be routed to ...
2
votes
0answers
185 views
How to track redirects accross domains in firebug/firefox?
I have Firebug, I'm on the net tab, persist is on, but when i enter "olddomain.com" and it redirects to "newdoamin.com", the "olddomain.com" request is removed from the console. I want all redirects ...
1
vote
1answer
58 views
How can I change (locally) a hyperlink on a site to point to a different location? Opera, Windows XP
How can I change all instances of a hyperlink pointing to, say, domain_address_a, to point to domain_address_b (still a string address, not an IP address, both URLs in this case belong to the same ...
0
votes
1answer
116 views
firefox 8 on Mac OSX Lion - browser redirections don't seem to work
For example, when you login to paypal and you get a page saying "if you see this for longer than 5 seconds, click here" or something to that effect - the redirect that should have happened there ...
2
votes
1answer
42 views
How can I redirect input from file and then from terminal?
How can I run a program in bash in such a way that first it receives some input from a file, and then, as the file ends, it will receive input from terminal?
1
vote
1answer
400 views
Firefox: Disable window.location on website
I'm trying to prevent a certain site from being able to use javascript to redirect the browser to another page. The script in question is an inline script so Greasemonkey and adBlock can't do ...
0
votes
1answer
116 views
Different output when redirecting
$ mysql -e 'select a,b from tablefoo' databasename
yields
+---+---+
| a | b |
+---+---+
| 1 | 0 |
| 2 | 1 |
+---+---+
whereas
$ mysql -e 'select a,b from tablefoo' databasename > file
...
1
vote
4answers
328 views
Can I get my browser to automatically redirect on some pages?
Is it possible to have a browser (firefox or chrome), when I navigate to a specific page, the browser automatically redirects me to a different page of my choice. I'm wondering if there is some sort ...
3
votes
3answers
51 views
Redirected: Is there a way to “grab” urls I'm being redirected through?
Let's say I'm visiting yourwebsite.com which redirects to somethingelse.com which redirects to somethingdifferent.com before taking me to finalpage.com. All of this happens in an instant, so quickly ...
2
votes
1answer
50 views
Console command redirect to nothing
Is there a way to redirect Windows console commands to nothing\null?
A regular redirection might look like:
prog.exe > a.txt
However in my case I would like to redirect the output so that it ...
5
votes
2answers
289 views
Is there a binary-safe “triple less than” <<< operator in bash?
This is a rather hypothetical question, so please don't ask me why I'd want to do this.
Assuming that I have a variable GIF that contains binary data, and assuming that I cannot use the pipe | ...
1
vote
1answer
192 views
Internet Explorer not redirecting HTTP to HTTPS to a specific user
One of our users is trying to access a site that automatically re-directs the HTTP to a HTTPS domain, but it's not happening for her. She just gets a page cannot be displayed. However, if I "run as" ...
2
votes
2answers
575 views
Windows CMD Batch, START and output redirection
I would like to run two programs simultaneously from a batch file, and redirect the first program's output into a text file like:
start python 1st.py arg1 arg2 > out.txt
start 2nd.exe %1 arg2 arg3
...
0
votes
3answers
180 views
Redirecting Command output to file
This seems so simple when doing it from command line but I'm not able to accomplish it inside a script. I am trying to put output of following command into a text file:
CMD= mysql -uroot -psecret -e ...
5
votes
3answers
224 views
What is the difference between &> and >& in bash?
What is the difference between &> and >& in bash?
tldp did not mention the latter one. Is it really a redirection operator?
Or does someone know a more complete tutorial?
0
votes
2answers
239 views
Redirect subdomain to internal IP
I have a Fortigate 80C at home and have a number of servers hosted: mail, git, web, RDP, voip etc.
Now I want these subdomains to redirect to certain internal IPs:
mail.domain.com > 192.168.0.200
...
1
vote
2answers
324 views
How do I eliminate unwanted redirects on a web page?
I have been accessing a particular web site over a period of months. Over the last two days, every time I try to access the site, I see the site page for less than a second, and then get redirected to ...
2
votes
1answer
320 views
Default PowerShell to emitting UTF-8 instead of UTF-16?
By default, PowerShell in Windows seems to be outputting UTF-16 (e.g., if I do a simple echo hello > hi.txt, then hi.txt ends up in UTF-16). I know that I can force this to my desired text ...