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 6160217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:15:45+00:00 2026-05-23T21:15:45+00:00

Im running a program in C which calls shell script. The script sometimes shows

  • 0

Im running a program in C which calls shell script. The script sometimes shows an error(SIOCSARP: Invalid argument)
The error is not really imporant, it occurs when the program tries to add local IP, it is not important here.

Is there a way to cut any output to the shell in linux here?

Shell script code:

#!/bin/sh
arp -s $1 $2

Running the script:

sprintf(script, "/home/add_arp.sh %s %s", tableI[i].IPaddr, tableI[i].MACaddr);
system(script);

Thanks

  • 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-05-23T21:15:45+00:00Added an answer on May 23, 2026 at 9:15 pm

    If the output you’re seeing is on standard error rather than standard output, you can use:

    arp -s $1 $2 2>/dev/null
    

    This will drop all error output in to the bit bucket. If it’s going to standard output and you want to be selective, you can use something like:

    arp -s $1 $2 | grep -v 'SIOCSARP: Invalid argument'
    

    This will remove all lines containing that text.

    You can also combine standard output and error to the standard output stream and be selective:

    arp -s $1 $2 2>&1 | grep -v 'SIOCSARP: Invalid argument'
    

    And finally, if you don’t want to see any output:

    arp -s $1 $2 &>/dev/null
    

    Although I wouldn’t use that last one myself unless I was sure I didn’t want to know about any problems.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I now have a running Java program which only lacks of the final step,that
I would like to monitor my program which is running on the web server.
How can I check the umask of a program which is currently running? [update:
I'm working on a Java 2D rendering program (running on 1.6.0_11), which uses external
I am developing a windows CE program for the Motorola MC9090G which is running
In my C# program, I have a thread that represents a running test, which
I'm making a small Python program, which calls the webbrowser module to open a
I have a shell script that calls a java jar file and runs an
Following scenario: In an WPF application the program calls Log.Write to enqueue messages which
I have a Windows Service program running in Release mode that runs 24/7 which

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.