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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T02:00:14+00:00 2026-06-08T02:00:14+00:00

I need to assign the output of a command to a variable. The command

  • 0

I need to assign the output of a command to a variable. The command I tried is:

grep UUID fstab | awk '/ext4/ {print $1}' | awk '{print substr($0,6)}'

I try this code to assign a variable:

UUID=$(grep UUID fstab | awk '/ext4/ {print $1}' | awk '{print substr($0,6)}')

However, it gives a syntax error. In addition I want it to work in a bash script.

The error is:

./upload.sh: line 12: syntax error near unexpected token ENE=$( grep UUID fstab | awk '/ext4/ {print $1}' | awk '{print substr($0,6)}'
 )'

./upload.sh: line 12:   ENE=$( grep UUID fstab | awk '/ext4/ {print $1}' | awk '{print substr($0,6)}'
 )'
  • 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-08T02:00:16+00:00Added an answer on June 8, 2026 at 2:00 am

    well, using the ‘$()’ subshell operator is a common way to get the output of a bash command. As it spans a subshell it is not that efficient.

    I tried :

    UUID=$(grep UUID /etc/fstab|awk '/ext4/ {print $1}'|awk '{print substr($0,6)}')
    echo $UUID # writes e577b87e-2fec-893b-c237-6a14aeb5b390
    

    it works perfectly 🙂

    EDIT:

    Of course you can shorten your command :

    # First step : Only one awk
    UUID=$(grep UUID /etc/fstab|awk '/ext4/ {print substr($1,6)}')
    

    Once more time :

    # Second step : awk has a powerful regular expression engine ^^
    UUID=$(cat /etc/fstab|awk '/UUID.*ext4/ {print substr($1,6)}')
    

    You can also use awk with a file argument ::

    # Third step : awk use fstab directlty
    UUID=$(awk '/UUID.*ext4/ {print substr($1,6)}' /etc/fstab)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to run this linux command from python and assign the output to
I need to get UserCarId(int) from this query and assign to int type variable.
I need to find the text 'ifeq ($(Param1)' using grep. I try to assign
I need to assign a variable which will be used to create the id
I need to assign values to properties through reflection, and it has been OK
I need to assign a specific color to a bar in ggplot bar plots.
I need to assign an active class to my main-level navigation rendered by wordpress.
I am exporting datatable in MSEXCEL.I need to Assign MultipleLines in a cell in
A TreeNode class has Text Name Tag I need to assign more values to
What I want to do is following. Inside a function, I need to assign

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.