Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
8answers
9k views

How do I use sudo to redirect output to a location I don't have permission to write to?

I've been given sudo access on one of our development RedHat linux boxes, and I seem to find myself quite often needing to redirect output to a location I don't normally have write access to. The ...
18
votes
5answers
12k views

Ruby On Rails - redirect_to(:back)?

I have a page that lists all of the projects that has sortable headers and pagination. path: /projects?order=asc&page=3&sort=code I choose to edit one of the projects path: ...
16
votes
3answers
581 views

Why is my 301 Redirect taking so long?

In a long tiredsome quest to speed up my site, I have figured out something is wrong with the redirection: currently my index.php handles all the homepage redirections via PHP header location 301 ...
16
votes
3answers
8k views

How do I redirect to the previous action in ASP.NET MVC?

Lets suppose that I have some pages some.web/articles/details/5 some.web/users/info/bob some.web/foo/bar/7 that can call a common utility controller like locale/change/es or authorization/login ...
15
votes
3answers
9k views

Can I redirect the stdout in python into some sort of string buffer?

I'm using python's ftplib to write a small FTP client, but some of the functions in the package don't return string output, but print to stdout. I want to redirect stdout to an object which I'll be ...
15
votes
5answers
7k views

How to load program reading stdin and taking parameters in gdb?

I have a program that takes input from stdin and also takes some parameters from command line. It looks like this: cat input.txt > myprogram -path "/home/user/work" I try to debug ...
10
votes
2answers
69 views

Dynamic .htaccess rules

I updated my site twice since the last year and I have different page names since my first version. Is it possible to create dynamic rules in apache? for example: I use to have these pages ...
10
votes
2answers
504 views

Difference between HTTP redirect codes

The differences between the various HTTP 3XX redirect codes are not clear to me. Yes, I've read the spec, but there seems to be some discrepancy between the standard and actual practice here. The ...
10
votes
2answers
8k views

Redirect stdout and stderr to a single file in dos

I'm trying to redirect all output (stdout + stderr) of a dos command to a single file: C:\>dir 1> a.txt 2> a.txt The process cannot access the file because it is being used by another ...
9
votes
6answers
2k views

redirect COPY of stdout to log file from within bash script itself

I know how to redirect stdout to a file: exec > foo.log echo test this will put the 'test' into the foo.log file. Now I want to redirect the output into the log file AND keep it on stdout i.e. ...
9
votes
3answers
598 views

Detect destination of shortened, or “tiny” url

I have just scraped a bunch of Google Buzz data, and I want to know which Buzz posts reference the same news articles. The problem is that many of the links in these posts have been modified by URL ...
8
votes
3answers
1k views

ViM: How to redirect ex command output into current buffer or file?

How can I redirect or pipe the output of an ex command into my current buffer or a file? For example, I want to read the contents of all the registers into the current buffer, which in ex mode is ...
8
votes
8answers
7k views

Suppress output in Python calls to executables

I have a binary named A that generates output when called. If I call it from a Bash shell, most of the output is suppressed by A > /dev/null. All of the output is suppressed by A &> ...
7
votes
4answers
333 views

In UNIX what “cat file1 > file1 does?”

When the output of a command is redirected to a file, the output file is created or truncated by the shell before the command is executed, any idea what cat foo > foo does?
7
votes
3answers
1k views

Why is HTML form redirection used in OpenID 2?

Why would you do an automatic HTML post rather than a simple redirect? Is this so developers can automatically generate a login form that posts directory to the remote server when the OpenID is ...
6
votes
3answers
277 views

How do I create a passback tag from a URL?

I have a couple of ad networks that have been able to integrate a passback URL (requested when a paid ad impression is not available) but one ad network can only accept a passback script tag, which I ...
6
votes
3answers
64 views

sh: How do I avoid clobbering numbered file descriptors?

When I have exec 3>>file # file descriptor 3 now points to file [ $dryrun ] && exec 3>&1 # or possibly to stdout echo "running">&3 exec 3>&- ...
6
votes
1answer
2k views

Response.Redirect and thread was being aborted error?

I had this error Thread was being aborted., this afternoon in my error log. The code that caused this error is Response.Redirect (Login.aspx, true); If i change the bool value to false, the error ...
6
votes
6answers
957 views

Can I capture stdout/stderr separately and maintain original order?

I've written a Windows application using the native win32 API. My app will launch other processes and capture the output and highlight stderr output in red. In order to accomplish this I create a ...
6
votes
3answers
5k views

Redirecting bash stdout/stderr to two places?

This one's been bugging me for a while now. Is it possible to redirect stdout and stderr to both the terminal output and to a program? I understand it's possible to redirect the outputs to a file and ...
6
votes
2answers
1k views

Detect closed pipe in redirected console output in .NET applications

The .NET Console class and its default TextWriter implementation (available as Console.Out and implicitly in e.g. Console.WriteLine()) does not signal any error when the application is having its ...
5
votes
3answers
119 views

Where should I put the Mobile detection in .htaccess or php?

I have a mobile version of my site working now and I want to know where should I do the redirection. I only can think to do redirection using: .htaccess PHP I would like to know which one is ...
5
votes
4answers
135 views

Shell redirection vs explicit file handling code

I am not a native english speaker so please excuse the awkward title of this question. I just not knew how to phrase it better. I am on a FreeBSD box and I have a little filter tool written in C ...
5
votes
2answers
390 views

Change the document root of a parked domain?

I have run into a problem which is that my web host doesn't appear offer addon domains. I currently have a domain name pointing to my name servers. I went into cPanel to add an addon domain that ...
5
votes
3answers
489 views

jQuery Disable All Redirections (Links, Form Submissions, window.location changes etc)

Is it possible to use javascript to disable any code that would take the browser away from the current page? I have tried the following code but it didn't work: $(window).unload(function(e){ ...
5
votes
2answers
2k views

Can I create or mount a virtual drive

Is this feasible to mount or create a drive using C#. If So , Can we use a redirector with the Virtual Drive? For example , When I will click on the drive , it should be redirected to my code which ...
5
votes
1answer
794 views

Android: Redirect outgoing calls

I'm trying to redirect outgoing calls to a different phone number on an Android device. So, I use a BroadcastReceiver "listening" for the NEW_OUTGOING_CALL intent, on his onReceive() method I use the ...
5
votes
3answers
458 views

Can colorized output be captured via shell redirect?

Various bash commands I use -- fancy diffs, build scripts, etc, produce lots of color output. When I redirect this output to a file, and then cat or less the file later, the colorization is gone -- ...
5
votes
1answer
954 views

Does http-equiv=“refresh” keep referrer info and metadata?

Hey guys, I'm posting this here because the Doctype community seems to be sleeping in. If I set up a page like this: <html><head><meta http-equiv="refresh" ...
5
votes
1answer
1k views

The '<' operator is reserved for future use (PowerShell)

I am using powershell and am trying to run the following command: .\test_cfdp.exe < test.full | tee test.log test.full is a script that mimics command line inputs to test_cfdp.exe. However, I ...
5
votes
6answers
12k views

Zend: Redirect to Action with parameters

I am using zend framework. I am using the following statement to redirect to another action. $this->_helper->redirector('some_action'); Above statement is working perfectly and 'some_action' ...
5
votes
2answers
1k views

A way to figure out redirection URL

Given a URL A which gets redirected to a 3rd party website B, in my application I need to to find out URL B for the given url A and insert it in DB , this can be a windows application or web or ...
5
votes
3answers
2k views

How can I keep WWW::Mechanize from following redirects?

I have a Perl script that uses WWW::Mechanize to read from a file and perform some automated tasks on a website. However, the website uses a 302 redirect after every time I request a certain page. I ...
5
votes
10answers
2k views

How to make a redirect in PHP?

Is it possible to redirect a user to a different page through the user of PHP? Say the user goes to www.example.com/page.php and it I want to redirect them to www.example.com/index.php , how would I ...
5
votes
4answers
1k views

Redirecting users from edit page back to calling page

I am working on a project management web application. The user has a variety of ways to display a list of tasks. When viewing a list page, they click on task and are redirected to the task edit ...
4
votes
1answer
80 views

subdomain redirection in htaccess [closed]

I was wondering if the following scenario is possible using htaccess rules. I want one subdomain to be redirected to another url. I have contact the server admin to add the "test" subdomain to ...
4
votes
1answer
180 views

Advanced HTACCESS Subdomain Redirection (foo.dom2.com to foo.dom1.com)

I have domain1.tld and domain2.tld. Domain1.tld is the primary domain name and domain2.tld is merely an alias. I have domain2.tld successfully redirected to domain1.tld, via HTACCESS, but I want all ...
4
votes
5answers
78 views

Why doesn't “sort file1 > file1” work?

When I am trying to sort a file and save the sorted output in itself, like this sort file1 > file1; the contents of the file1 is getting erased altogether, whereas when i am trying to do the ...
4
votes
2answers
66 views

Redirect output of one exe to another exe : C#

I have created two simple .exe files. One of them takes a filename parameter at runtime and reads the contents of the file to the console. The other waits on its console's input and then reads it; for ...
4
votes
4answers
112 views

How to do a mod_rewrite redirection to relative URL

I am trying to achieve a basic URL redirection for pretty-URLs, and due to images, CSS etc. also residing in the same path I need to make sure that if the URL is accessed without a trailing slash, it ...
4
votes
2answers
96 views

How can I check in C++ whether std::cout is redirected to a file?

I need my program to behave differently, depending on whether the output is to a terminal or to a file. How can I find this out from within C++? I assume there is no solution that works for all ...
4
votes
2answers
139 views

stdout to file1, stderr to file2, both correctly interleaved to stdout and file

Given a third-party program, how would one simultaneously: write stdout to z.stdout write stderr to z.stderr pass exit codes appropriately write both in correct interleaved order to stdout Here's ...
4
votes
3answers
327 views

Bash Terminal Redirect to another Terminal

I have netcat port listening on port 1501 and I wanna pipe the recieved input on that port to a new terminal window. I know this is a bad idea because basically anyone on that port can control the ...
4
votes
3answers
141 views

Why does redirection + pipe ( 2>&1 |) merge both streams instead of moving stderr to stdout?

I read that redirections are processed left to right. So in this example command 2>&1 | less One would think that fd 2 is directed to fd 1 first and then fd 1 is sent to pipe. So fd 1 and 2 ...
4
votes
2answers
390 views

.htaccess mod_rewrite variables through redirect

Short Version: I wrote the question, and realized most people wouldn't want to read that much text. Consider the below reference, here's the TL;DR: I need to 301 redirect this url ...
4
votes
1answer
82 views

How can I tell if a piece of traffic is Facebook?

I am trying to get my meta tags right for certain pages, and in order to do that I need to trick facebook into reading a different header. How can I detect if user is infact Facebook's spider/crawler ...
4
votes
1answer
82 views

How can ls see the future when using bash redirection?

I meet the following code in a book and still not understand why. Anyone can help to explain it please? [root@wd00070319 test]# ls [root@wd00070319 test]# touch file1 [root@wd00070319 test]# ls file1 ...
4
votes
1answer
215 views

Why does this conditional redirect in Catalyst not work?

I have a Catalyst application and would like to redirect based on a conditional statement. I am having trouble with this and I'm wondering if anyone might have insight into why this seemingly easy ...
4
votes
5answers
661 views

Bash redirection with file descriptor or filename in variable

In my script I want to be able to write to either a file or to stdout based on certain conditions. I'm curious as to why this doesn't work in my script: out=\&1 echo "bird" 1>$out I tried ...
4
votes
1answer
590 views

Altering DLL search path for static linked DLL

I've searched for any hints how I can do this, but all I found was how to redirect a SxS DLL to the local application folder. Here is what I want to accomplish: The (C++) Application.exe is linked to ...

1 2 3 4 5 15