About 957,000 results
Open links in new tab
  1. What is the difference between shell, console, and terminal?

    As unix/linux systems added better multiprocessing and windowing systems, this terminal concept was abstracted into software. Now you have programs such as Gnome Terminal which …

  2. What is $* and $# in Linux? - Super User

    What do the following environment variables in Linux mean? What is $* (dollar sign followed by an asterisk)? What is $# (dollar sign next to a hash mark/number sign/octothorpe/pound sign)?

  3. PowerShell vs. the Unix Shell - Super User

    PowerShell is superficially similar to Unix shells. PowerShell has aliases for many of the commands you are used to in Unix, like ls, rm, cp, mv, etc. However, the way that the cmdlets …

  4. shell - What is the origin of the UNIX $ (dollar) prompt? - Super User

    The UNIX prompt uses a $ symbol to indicate that your input is expected. I was wondering why this symbol was chosen—if there is a reason. Dollar just seems a little unexpected. A > …

  5. How to end a program in an unix shell? - Super User

    4 Normally a unix shell will have the following key mappings control-C => SIGINT (interupt) control-Z => SIGTSTP (terminal stop / suspend) sometimes there is also control-y => delayed …

  6. How can I use a Bash-like shell on Windows? - Super User

    I use Linux and a Mac, and I'll be teaching some command line stuff soon. What can I install on Windows to give me a terminal window most similar to a basic Mac/Linux Bash shell? I would …

  7. shell - What does "2>&1" do in command line? - Super User

    I know that the > sign is used for output redirection in the command line, but I'm having trouble finding something that explains the use of 2>&1 in the command line. For example: curl ...

  8. What is the effect of Ctrl + Z for a Unix/Linux application?

    The shell has the functionality to background the process, but this is a relationship between the shell and the process. The process itself doesn't really have the concept of background or …

  9. shell - How to display current path in command prompt in linux's …

    I would like to display current path in sh prompt (not bash shell), which currently just shows "#", I tried with introducing this env PS1="$(whoami)@$(hostname):$(pwd)" and set …

  10. path - How does Unix search for executable files? - Super User

    65 When a file is executed, how does Unix search for it? If there are multiple executable files in PATH with the same name, which one is preferred? Is the current directory included in the …