Tagged Questions
The prompt tag has no wiki summary.
30
votes
10answers
14k views
Detecting Unsaved Changes using JavaScript
I have a requirement to implement an "Unsaved Changes" prompt in an ASP .Net application. If a user modifies controls on a web form, and attempts to navigate away before saving, a prompt should ...
29
votes
14answers
3k views
What is your favorite Bash prompt? [closed]
What are some elements in your favorite bash prompt?
I like to have an indicator of the success of the most recent command, like so (in .bashrc):
function exitstatus {
EXITSTATUS="$?"
...
23
votes
2answers
4k views
Python: Read password from stdin
Scenario: An interactive CLI Python program, that is in need for a password. That means also, there's no GUI solution possible.
In bash I could get a password read in without re-prompting it on ...
21
votes
4answers
1k views
Different bash prompt for different vi editing mode?
When using vi mode (set -o vi) with Bash, it would be nice to have a prompt that depends on the mode you are currently in (insert or command). How does one find out this editing mode?
B.t.w, this ...
16
votes
4answers
3k views
Don't make me manually abort a LaTeX compile when there's an error
As suggested here, latexmk is a handy way to continually compile your document whenever the source changes. But often when you're working on a document you'll end up with errors and then latex will ...
9
votes
3answers
881 views
Code challenge: Bash prompt path shortener
I implemented a prompt path shortener for bash to be included in the PS1 environment variable, which shortens the working directory into something more compact but still descriptive. I'm curious what ...
7
votes
7answers
808 views
How can the last command's wall time be put in the Bash prompt?
Is there a way to embed the last command's elapsed wall time in a Bash prompt? I'm hoping for something that would look like this:
[last: 0s][/my/dir]$ sleep 10
[last: 10s][/my/dir]$
Background
I ...
7
votes
7answers
777 views
Custom PowerShell prompts
I'm looking for different examples of custom Powershell prompt function implementations. If you have a custom implementation of your own please post the script. Links to existing resources are good ...
7
votes
4answers
3k views
To get a prompt which indicates Git-branch in Zsh
I run the following codes separately as my prompt unsuccessfully in .zshrc. This suggests me that apparently I do not have a program called __git_ps1. It is not in MacPorts.
#1
PROMPT="$(__git_ps1 " ...
7
votes
4answers
8k views
How can I change the color of my prompt in zsh (different from normal text)?
To recognize better the start and the end of output on a commandline, I want to change the color of my prompt, so that it is visibly different from the programs output. As I use zsh, can anyone give ...
6
votes
1answer
169 views
Can I change the prompt in MATLAB?
I never work with the GUI and am always inside a terminal (also full screen, so no title bar) set with the -nodesktop -nodisplay option. I also have different servers that I connect to, to run matlab ...
6
votes
2answers
11k views
C# - Run Command Prompt Commands
Is there any way to run command prompt commands from within a C# application? If so how would I do the following:
copy /b Image1.jpg + Archive.rar Image2.jpg
This basically embeds an RAR file ...
6
votes
4answers
3k views
json xhr response opens a download file popup window
For one of our ajax request (with a .json response) some of our clients have complained that they are seeing a "File Download" prompt asking the user to download the .json response. I am baffled ...
5
votes
1answer
158 views
non-recursively replace built-in javascript functions
I am writing some bookmarklets here and I have some questions related to built-in javascript functions.
Let's say I want to replace the built-in prompt function (not necessarily in a bookmarklet). ...
4
votes
2answers
74 views
How do i add a command line prompt as the $EDITOR when committing in svn and git
Is it possible to have a small shell script to replace the $EDTIOR for git and svn?
So when a person not familiar with vi or emacs makes a commit and forgets to add a
-m "fixed the foo bug"
...
4
votes
2answers
6k views
In Windows cmd, how do I prompt for user input and use the result in another command?
I have a windows bat file which I would like to accept user input and then use the results of that input as part of the call to additional commands.
For example, I'd like to accept a process ID from ...
4
votes
4answers
2k views
Shell Prompt Line Wrapping Issue
I've done something to break my Bash Shell Prompt in OS X (10.5.7) Terminal.
This is the PS1 that I had configured:
PS1='\[\e[1;32m\]\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '
As far as I can tell I ...
4
votes
3answers
793 views
Blackberry Permission Questions - “Prompt” acts differently on different devices
I have a few questions about permissions and prompts. Most importantly this has to do with making a data connection and using GPS
QUESTIONS
1. Prompts & Allow - Remove Notice?: When installing ...
4
votes
7answers
4k views
Sourcesafe command line options
I am having an issue with the Microsoft Visual Sourcesafe command line options that I'm hoping someone has run across and can assist me with.
I have the following line in a DOS batch file.
...
3
votes
3answers
78 views
How-To Perl recursive regex
I have outputs from a device I need to test and mostly the response is one line, but sometimes it is two lines. Which I handle with a simple regex parsing one or two lines
if ($prompt =~ ...
3
votes
4answers
170 views
Make R (statistics package) wait for keyboard prompt when run within a bash script
I am using R to generate a series of plots within a loop, with the user hitting the enter key to indicate they have seen the plot and it is time to move on. These are interactive rotatable plots ...
3
votes
1answer
42 views
have number of modified and unknown mercurial files on prompt
I'm using the hg prompt extension to have a nice prompt while working with hg.
Right now my prompt looks like this:
~/my/current/path [hg default !]
the '!' part in the prompt I get via the ...
3
votes
2answers
136 views
Changing the way a JavaScript Alert() or Prompt() looks
Is there any way to change the looks of an alert or prompt in javaScript ? things like adding an Image , changing the font color or size and what ever will make it look different ?
thanks in advance
...
3
votes
2answers
78 views
How can i get a prompt to ask for the path, when using Get-ChildItem in PowerShell?
I'm rather new to PowerShell.
I found a few guides and mashed a little script together, though i do not seem to be able to set a prompt to ask for the source/destination.
The script is as following:
...
3
votes
3answers
193 views
Is it possible to configure the IRB prompt to change dynamically?
I'd like to navigate around the filesystem in IRB and have the prompt change to reflect the current working directory, but I can't figure out how to make the prompt update after each command. ...
3
votes
1answer
3k views
WPF: Create a dialog / prompt
I need to create a Dialog / Prompt including TextBox for user input. My problem is, how to get the text after having confirmed the dialog? Usually I would make a class for this which would save the ...
3
votes
1answer
874 views
Prompt the user to install ActiveX/.Net Class Library from browser
I build a .NET Class Library project that accesses the mshtml.HTMLDocument when called (from JavaScript). Everything works ok on my machine since I changed the permissions in .NET Configuration for ...
3
votes
1answer
1k views
jQuery - modify the prompt/alert functions
Hey, I need an advice, if it's worth it to downlaod a jQuery plugin (such as Impromptu), or if it's easier to make my own code just to modify the "prompt" efect. All I need is something like the first ...
3
votes
3answers
4k views
Shell script user prompt/input
This is a crude korn shell script that someone else wrote. I don't know much about using shell syntax and I'm not even sure if this is possible.
Is there any way for me to run this file and be ...
3
votes
6answers
692 views
Going backwards in a bash prompt
I'd like to have a blank line after my bash prompt and before the output on my Mac. It should look like this would:
echo; ls
Can I add a newline to my bash prompt and then go back up one line to ...
2
votes
1answer
111 views
How are you meant to use Prompt, Description, Ordering when applying data-annotations in ASP.NET MVC 3
I have a view model with a property on it that looks like this:
[Display(Name = "Some Property", Description = "This is description", Prompt = "This is prompt")]
[Required(ErrorMessage = ...
2
votes
2answers
71 views
Insert a environment variable inside the bash prompt
Is it possible to use an environment variable inside the bash prompt?
export PS1="[\u@\H/$FOO \W]\$ "
It's possible but the prompt don't change when I change the environment variable. Is this ...
2
votes
2answers
621 views
Phonegap and prompt()
I was looking through the Phonegap sources for Android, and trying to verify that their notification.alert() method simply delegates to the native JavaScript alert() function. Their code does:
...
2
votes
1answer
87 views
Break php process for getting js variable
I asked that question about PHP breaking.
I need stop execution of php process thread, while javascript performs get variable value operation (the code is generating by php).
Example:
<?php
...
2
votes
4answers
1k views
Prompt Dialog in Windows Forms
I am using System.Windows.Forms but strangely enough don't have the ability to create them.
How can I get something like a javascript prompt dialog, without javascript?
MessageBox is nice, but there ...
2
votes
4answers
474 views
broken bash prompt wrap line
I'm customizing my bash prompt on OsX to include git branch plus some marks of the branch state. This breaks line wrap.
I know that I have to add \[ and \] to prevent this issue, but doing so in the ...
2
votes
2answers
325 views
Python: read user-input directly from the prompt
I have to validate user-input from stdin that is not going to be entered by hitting the Enter-key.
So readline() and other Enter-dependent functions are of no use to me.
Practically the promt will ...
2
votes
1answer
330 views
Dynamic elements in bash PS1
I have put the following in my ~/.localsh file to customize my bash prompt when working with git.
Basically I want to get the current branch displayed in my terminal.
The gitk tool shows branches ...
2
votes
2answers
788 views
What is the difference between PS1 and PROMPT_COMMAND
While taking a look at this awesome thread I noticed that some examples use
PS1="Blah Blah Blah"
and some use
PROMPT_COMMAND="Blah Blah Blah"
(and some use both) when setting the prompt in a ...
2
votes
2answers
313 views
What does ${#${(S%%)string//(\%([KF1]|)\{*\}|\%[Bbkf])}} mean
I found this in the adam2 zsh prompt, and I have no idea what it means. Apparently it counts the length of the "string", but how it does that is beyond me.
...
2
votes
1answer
902 views
ZSH Prompt/RPrompt Conflict
I currently have my ZSH PROMPT variable set up as:
PROMPT=$'[%{\e[0;32m%}%n@%m:%~%{\e[0m%}]>
and my RPROMPT variable as:
RPROMPT=$'[%{\e[0;32m%}%T\e[0m%}]'
The effect I'm working for is to make ...
2
votes
1answer
181 views
Display a password prompt in Firefox
I'm writing a Firefox extension, and would like to display a password prompt. I don't just want to use the JavaScript prompt function, since it doesn't hide what's being typed. Instead, I'd like to ...
2
votes
8answers
2k views
How to respond to password prompt when using SCP in a shell script?
First of all, I am well aware of that there are many of questions regarding this topic. I have read them, but still could figure out an appropriate answer for my situation.
I would like to scp the ...
2
votes
1answer
2k views
Compiling C-code from the Command Prompt in Windows?
I want to compile C code from the Command Prompt in Windows. I have added the environment variable to the PATH and I can compile .cs files with: csc app.cs
That's OK, but how do I compile app.c?
2
votes
4answers
995 views
Coloring directory name in ksh
In my current situation, it is not unusual for me to have several UNIX computers I connect to, as several different users depending on the situation, and to traverse through various directories on the ...
2
votes
1answer
507 views
Lex/Yacc: Print message before input
I'm trying to figure out how I can display a message/prompt when using lex/yacc (flex/bison).
For instance, main looks like so:
int main(int argc, char *argv[])
{
yyparse();
}
Which calls ...
2
votes
3answers
819 views
Why is this bash prompt acting strangely/disappearing, and how do I fix it (OS X)?
I admit that I use a somewhat long-winded bash prompt:
--(username)-(Wed April 01|12:00:00)--(~ $
Recently, I got the bright idea to change it so that depending on the exit value from the previous ...
2
votes
2answers
209 views
Is it possible to duplicate the native behavior of JavaScript's prompt()?
I'm rolling my own version of prompt() for aesthetic purposes; it's come along quite nicely as far as visuals go, but I have run into a slight hitch: the native version of the function causes code ...
2
votes
4answers
2k views
PHP IRC Robot, Send Command, but now I need the bot to read the command
I have a PHP IRC Robot that I use in my channel and I need it to make OPs to specific set users in the script by me. Anyways I want the robot to check if the user is logged into NickServ to prevent ...
2
votes
1answer
311 views
Is there a Perl equivalent for Emacs' ido-completion?
I've built a number of work-specific helper functions that could be useful for other members of my team—but I've written them all in Emacs' Elisp. And getting them to convert from Notepad++ is ...