JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

Pause Program Execution in Linux Bash

Author:JIYIK Last Updated:2025/03/20 Views:

You may sometimes want to pause program execution in a bash script. This could be because of getting input from the user or asking them to confirm a case.

In DOS, you can pausedo this using the command. This article will explain how to readpause the execution of a program using the command.


readUse command to pause program execution in Bash

readThe command causes the program to pause until input is received from the user or a certain period of time. In the rest of this article, we will explain the command's parameters and give examples of its different uses.

The following example gets a character from the user to continue execution.

read -n1 -rp "Press any key to continue: " key
  • -nThe parameter specifies the number of characters to be taken as input. In this example, it is set to 1.
  • -rThe parameter specifies that the input will be in raw mode. No escape characters are allowed.
  • -pThe -p parameter creates a prompt. If used with $and ' ', it allows escaping characters in the text to be printed. When used with double quotes, it prints as plain text.
  • keyis any variable. It stores the characters given as input.

In the following example, the user can press Enterthe key to continue. They do not have to use the character.

Also, in the example, the $and ' 'characters -pare used with the parameter. It allows \nthe character to be used as a line break.

read -rsp $'Press enter to continue\n'
  • -sParameter is used for silent mode. Characters taken from keyboard will not be reflected on screen.

In the next example, the user must press a key 3 秒within , or the program will continue executing.

read -t3 -n1 -rp "Press [x] to exit in 3 seconds " key
  • -tThe parameter specifies the timeout in seconds. In this example, it is set to 3 seconds.

In the previous example, the letters Nare printed to the screen by default.

read -rp "Do you want to exit? (y/N) : " -ei "N" key;
  • -eParameter is used to switch to readlinemode.
  • -i "N"The parameter specifies readlinethe default character for pattern.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Run batch (.bat) files in CMD

Publish Date:2025/03/20 Views:155 Category:OPERATING SYSTEM

This article will show you how to use CMD to run a batch file.bat. There are three ways to run a batch file. Let us discuss them in the following sections. Run batch (.bat) files in CMD by directly clicking on them This way you can just go

Changing CMD text color using batch script

Publish Date:2025/03/20 Views:171 Category:OPERATING SYSTEM

This article will first discuss the basic concepts of batch scripts or batch files. After introducing the Batch script, let's discuss how to use the Batch script to change the text color of CMD every second. Batch script or file A batch scr

Batch set command timeout

Publish Date:2025/03/20 Views:50 Category:OPERATING SYSTEM

This article will first discuss the concept of timeout command in batch scripting. After that, we will discuss setting timeout command for any other command. Timeout command in batch script A timeout is a utility that pauses or delays for a

Batch merge XML files

Publish Date:2025/03/20 Views:101 Category:OPERATING SYSTEM

This article will first discuss and understand the XML file format. After that, we will discuss merging two or more XML files into one file using batch commands and scripts. XML File XML, also known as Extensible Markup Language, is a marku

Run .exe file from command prompt using batch script

Publish Date:2025/03/20 Views:76 Category:OPERATING SYSTEM

This article will show you how to use a batch (.bat) script to run a .exe type file. You can use two different commands to achieve this. Let’s discuss each method in the following sections. Run .exe file from command prompt using title an

Deleting files older than N days using batch script

Publish Date:2025/03/20 Views:57 Category:OPERATING SYSTEM

In this article, we will use a batch script to delete files older than N days. Deleting files older than N days using batch script The general format of the code to perform this task is shown below. FORFILES /p "D:\DIRECTORY" /S /M *.* /D -

Deleting files using batch script

Publish Date:2025/03/20 Views:178 Category:OPERATING SYSTEM

This article will demonstrate how to delete files using a batch script. Deleting files using batch script Generally, we can easily delete files by clicking on delete or pressing the delete button on the keyboard. But in Batch, we have to fo

Concatenate multiple files using batch script

Publish Date:2025/03/20 Views:195 Category:OPERATING SYSTEM

In this article, we will see how to concatenate multiple files into one file. Concatenate multiple files using batch script The general format of the commands we will use is shown below. type FileONE.txt FileTWO.txt ConcatFile.txt There are

Check if a file exists using batch processing

Publish Date:2025/03/20 Views:100 Category:OPERATING SYSTEM

This article will demonstrate how to use a batch script to check if a file exists through sample code. Check if a file exists using batch script The general format or syntax of the code to check if a file exists is provided below. IF EXIST

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial