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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:14:36+00:00 2026-06-02T16:14:36+00:00

I would like to get the total memory of a host by using a

  • 0

I would like to get the total memory of a host by using a ‘.exp’ script.

After getting inside the host, I execute the following line:

"send "top -n 1 | grep Mem: | awk '{ print $(NF-7) }' | cut -d 'k' -f1\r""

While executing the script, it returns the following error:

 can't read "(NF-7)": no such variable

But if get manually inside the host, and execute the same line ( without the “send” part) , it returns me the expected number…

What I’m doing wrong? Any idea? Any proposal for other way of doing the same?

Best Regards and thanks in advance,

Antonio

  • 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-02T16:14:37+00:00Added an answer on June 2, 2026 at 4:14 pm

    The output of top is not meant to be parsed this way. You can get the amount of memory in other, easier (better!) ways.

    sed -n -e '/^MemTotal/s/^[^0-9]*//p' /proc/meminfo
    

    Or you can parse the output of free, which also knows how to display in convenient sizes:

    # total memory in megabytes
    free -m | sed  -n -e '/^Mem:/s/^[^0-9]*\([0-9]*\) .*/\1/p'
    

    EDIT: You always have to ask yourself “Who expands what?”

    To send these commands with expect, try

    send "sed -n -e '/^MemTotal/s/^\[^0-9\]*//p' /proc/meminfo\n"
    
    # also removes kb suffix
    send "sed -n -e '/^MemTotal/{s/^\[^0-9\]*//;s/ .*//p}' /proc/meminfo\n"
    
    # displays in megabytes
    send "free -m | sed -n -e '/^Mem:/{s/^\[^0-9\]*//;s/ .*//p}'\n"
    

    This escapes from expect things that it would otherwise process and which were intended for sed.

    And here’s a (properly escaped) version of your original.

    send "top -n 1 | grep Mem: | awk '{ print \$(NF-7) }' | cut -d 'k' -f1\n"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to get the total memory allocated before and after I call
I would like to get the AssemblyCompany attribute from a WinForm project inside of
I would like to know if it is possible to get the total miles
I would like to get some stats programmatically about my app; for example: total
I would like to get the total sum of the results in Stocks, ETFs
I have a facebook app that I would like to get the total number
I would like to get share, like, comment and total count from a fan
I would like to get the total number of days in a year left
I would like to get the total sum of values having class addition1::: HTML
I would like to get the total number of open HTTP (TCP port 80)

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.