Comments on: Practical Interview Questions and Answers on Linux Shell Scripting https://www.tecmint.com/practical-interview-questions-on-linux-shell-scripting/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Mon, 08 Mar 2021 09:01:24 +0000 hourly 1 By: Peppe https://www.tecmint.com/practical-interview-questions-on-linux-shell-scripting/comment-page-1/#comment-1447267 Mon, 08 Mar 2021 09:01:24 +0000 http://www.tecmint.com/?p=7329#comment-1447267 Hello, I’m not sure if this is the right section to post my question.

I have a remote Ubuntu server with Xfce running on it. Here an application I would like to run via local script (remote). Any help with your great articles is appreciated, thank you in advance.

]]>
By: Jyotimoi https://www.tecmint.com/practical-interview-questions-on-linux-shell-scripting/comment-page-1/#comment-1129127 Wed, 10 Apr 2019 21:45:09 +0000 http://www.tecmint.com/?p=7329#comment-1129127 Thanks ! It was helpful
Please post more related to shell scripting.:-)

]]>
By: Kevin https://www.tecmint.com/practical-interview-questions-on-linux-shell-scripting/comment-page-1/#comment-992620 Tue, 15 May 2018 08:30:41 +0000 http://www.tecmint.com/?p=7329#comment-992620 In reply to Joseph in Atlanta.

Hello There,

Thank you, Your blog is indeed quite interesting around Practical Interview Questions and Answers on Linux Shell Scripting! I agree with you on lot of points!

By the way do you have any YouTube videos, would love to watch it. I would like to connect you on LinkedIn, great to have experts like you in my connection (In case, if you don’t have any issues).

Thank you,
Kevin

]]>
By: vikas chauhan https://www.tecmint.com/practical-interview-questions-on-linux-shell-scripting/comment-page-1/#comment-884354 Mon, 17 Apr 2017 19:42:02 +0000 http://www.tecmint.com/?p=7329#comment-884354 In reply to Aaron Kili K.

echo “scale=100 a(1) * 4” | bc -l

]]>
By: Aaron Kili K https://www.tecmint.com/practical-interview-questions-on-linux-shell-scripting/comment-page-1/#comment-819749 Wed, 21 Sep 2016 07:44:28 +0000 http://www.tecmint.com/?p=7329#comment-819749 In reply to Joseph in Atlanta.

@Joseph

Your analysis is on point here, however, this command : $ echo “scale=100 a(1)*4” | bc -l actually has a syntax error. It is missing a minor but important ; sign after the scale value, the correct syntax as per Bash shell is:

$ echo “scale=100; a(1)*4” | bc -l

You could be using another shell, you can let us know, above all thanks for your vital concerns and productive feedback.

]]>