Tagged Questions

1
vote
5answers
66 views

Using file contents as command line arguements in BASH

I'd like to know how to use the contents of a file as command line arguments, but am struggling with syntax. Say I've got the following: # cat > arglist src/file1 dst/file1 sr …
0
votes
2answers
36 views

I want all page requests to point to a single page

The wrinkle is that the pages being requested are aspx pages and they are no longer present. I want any request coming to the root domain (and any subdomain like www) to redirect t …
2
votes
3answers
99 views

Retrieving stdin after using the redirection operator <

For a programming assignment, we have the following requirements: It needs to be a command-line program written in C. It needs to read text from a text document. However, we are …
0
votes
3answers
23 views

DNS File Mapping

Hi guys, I'm trying to work out a feature for a Web application, but I'm a bit confused at this point. I was wondering if anyone can shed some light on the following scenario. Sa …
0
votes
2answers
24 views

Capturing the error stream from a sed command

Hello, How do I capture any error from a sed command into a file? Here is the sed command I am using: sed -e 's/'old_word'/'new_word'/' temp_file > output_file Now, when …
0
votes
2answers
30 views

Apache mod_rewrite question

Hi! I have an application running under tomcat 6. In front of it I have an apache server which is forwarding all requests. That is, the user "talks" to the apache and not to tomc …
0
votes
3answers
64 views

How to supply many argv and outputredirection with one bash var ?

In file a.lst: in1.a in1.b > out1.a 2> out1.b in2.a in2.b > out2.a 2> out2.b In do.sh: CLI=$(sed -n -e "1 p" a.lst) perl a.pl $CLI I want to run like perl a.pl in …
6
votes
6answers
256 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 …
1
vote
2answers
51 views

IIS server redirect locations…

hi, I got a asp site hosted in a iis server. In the server there is a virtual folder products and whenever a url like xyz.com/products/abc_11.asp is provided it is forwared to xyz …
0
votes
1answer
61 views

BASH script passing stdin input to a program and giving control back to user input

(I looked everywhere for this, perhaps my googling skill is off today) I have a program that requires a handful of initialization cmds from stdin (and not through arguments). It'd …
1
vote
3answers
60 views

What is equivalent code for window.location in jQuery?

I am currently using window.location for client-side redirection in jQuery. Is there any equivalent syntax to do client-side redirection?
0
votes
2answers
36 views

Transferring Everything from One Domain to Another

I want to move from one domain to another one that is shorter and (hopefully) easier to remember, but I also want the transition to be as seamless as possible. I'm a coder so I kn …
-1
votes
1answer
44 views

Mod Rewrite problem

.htacces Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^([a-zA-Z0-9_-]+)$ sinj.com.hr/index.php?var1=$1 [L] RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$ …
1
vote
2answers
61 views

Redirection Between View In MVVM

I am using MVVM patern for developing my WPF application. It working fine for unrelated pages, means how to go in another view from one view. Eg: I have one list page in which so …
0
votes
1answer
25 views

ASP.NET Webservice HTTP Redirect

My website posts orders to partner sites using web services. Recently, one of our partners implemented load balancing on their servers and our web requests are failing because they …

1 2 3 4 5 6 next
15 30 50 per page