Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8909229
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:22:42+00:00 2026-06-15T03:22:42+00:00

I have a shell script that I want to run two instances of my

  • 0

I have a shell script that I want to run two instances of my executable “server” in the background. However, when I run the script I get the error “read: missing arguments”. This problem does not occur when I remove the “&” to run in the background, but then it produces an undesirable behavior.

The server executable is followed by pairs of addresses and ports, but I removed any code checking for correct number of arguments. Where is the error being thrown, and how can I get this script to work?

#Location of executable.
SERVER=server
SERVER_NAME=`echo $SERVER | sed 's#.*/\(.*\)#\1#g'`

$SERVER localhost 4111 localhost 4222 &
$SERVER localhost 4222 localhost 4111 &

echo "Press ENTER to quit"
read
pkill $SERVER_NAME
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:22:43+00:00Added an answer on June 15, 2026 at 3:22 am

    read expects a variable after it to read into:

    read var1
    

    If you are only using read to block the execution of the script until you receive some response from the user, just use the above suggestion.


    Also, this probably isn’t what you intend to do:

    SERVER=server
    SERVER_NAME=`echo $SERVER | sed 's#.*/\(.*\)#\1#g'`
    

    because after that executes, SERVER_NAME would just be the string server

    If server is a command on your environment, what you probably meant to do is:

    SERVER_NAME=$(server | sed 's#.*/\(.*\)#\1#g'`)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a shell script file (run.sh) that contains the following: #!/bin/bash %JAVA_HOME%/bin/java -jar
I have a shell script, which is run under a opensuse linux, that starts
Problem Statement:- I have four shell script that I want to execute only when
I have created a Python script that I want to run daily via a
I have a Ruby 1.9 script that I want to run as a long-running
I have a shell script that runs as root. I want the script to
I have this bash shell-script command that causes date to run if make succeeds
I have a shell script that I want to call from a python program,
Have a shell script that reads the files in a particular directory. #!/bin/bash for
I have a shell script that launches a Maven exec:java process - exec mvn

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.