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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:11:49+00:00 2026-05-30T04:11:49+00:00

I am trying to get the name of the shell executing a script. Why

  • 0

I am trying to get the name of the shell executing a script.

Why does

echo $(ps | grep $PPID) | cut -d" " -f4

work while

echo ps | grep $PPID | cut -d" " -f4

does not?

  • 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-30T04:11:50+00:00Added an answer on May 30, 2026 at 4:11 am

    The reason is that

    echo ps
    

    just prints out the string ps; it doesn’t run the program ps. The corrected version of your command would be:

    ps | grep $PPID | cut -d" " -f4
    

    Edited to add: paxdiablo points out that ps | grep $PPID includes a lot of whitespace that will get collapsed by echo $(ps | grep $PPID) (since the result of $(...), when it’s not in double-quotes, is split by whitespace into separate arguments, and then echo outputs all of its arguments separated by spaces). To address this, you can use tr to “squeeze” repeated spaces:

    ps | grep $PPID | tr -s ' ' | cut -d' ' -f5
    

    or you can just stick with what you had to begin with. 🙂

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

Sidebar

Related Questions

I'm trying to get the name of the executable of a window that is
I am trying to get the name of the database I am connected to
I'm trying to get my name and trip input fields to line, but they're
I'm trying to get the instance name of my class. The way I do
I'm very new to c++ and boost. I'm trying to get the host name
Im trying to get some checkbox with a specific name document.getElementsByName(test); Unfortunatley i cant
Ok I am trying to get the users First Name the form gets their
i get this error when trying this: ERROR method name expected. How should i
I am trying to get a name of a DIV <div id=test name=info1 onclick=func(this.name)>This
I am trying to get class name with the extension (e.g. Employee.cs or Employee.aspx.cs)

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.