Skip to content
Advertisement

How to access specific path in linux using shellscript

Let us consider an example,

scriptPath=/home/sharath/Downloads/Atollic_TrueSTUDIO_for_STM32_9.2.0_installer

In the above line of code, If user is “sharath” then he can access a file/folder same way if the user is different how can access that folder/file dynamically.

below is my shellscript(.sh file):

JavaScript

In last line of the script, ${scriptPath} is diffrent for diffrent user, how can handle in shell script.

Update 1:

if i use, ${USER} or ${HOME} or whoami which returns “root” , Here is my log:

JavaScript

Update 2:

Currently user in “root”

Advertisement

Answer

I tried with couple of way and finally i found with below solution- Use below script for the

JavaScript

Here users returns current user name.

Your script become:

JavaScript

Thanks for answered my question.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement