How to get the real path of the current script in Linux

How to get the real path of the current script in Linux

1. Get the real path of the current script:

#!/bin/bash
if [[ $0 =~ ^\/.* ]] #Judge whether the current script is an absolute path, matching all thens starting with /
  script=$0
else
  script=$(pwd)/$0
fi
script=`readlink -f $script` #Get the real path of the file script_path=${script%/*} #Get the directory where the file is located realpath=$(readlink -f $script_path) #Get the real path of the directory where the file is located echo $script
echo $script_path
echo $realpath 

2.readlink -f: Get the real file location of the symbolic link, and finally get the real file location of the symbolic link

3.basename: Get the file name of the file

4.dirname: Get the directory name of the file

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to enhance Linux and Unix server security
  • Detailed explanation of the difference between chown and chmod commands in Linux
  • Use the more, less, and cat commands in Linux to view file contents
  • Explanation of Linux kernel optimization configuration for high-concurrency nginx server
  • How to modify the default encoding of mysql in Linux
  • How to delete garbled or special character files in Linux
  • Introduction to the use and disabling of transparent huge pages in Linux
  • Detailed explanation of upgrading Python and installing pip under Linux
  • How to use for loop combined with if to find files in Linux Shell directory
  • Detailed explanation of using top command to analyze Linux system performance

<<:  React example showing file upload progress

>>:  Mysql delete duplicate data to keep the smallest id solution

Recommend

WeChat applet implements text scrolling

This article example shares the specific code for...

Example of how to set WordPress pseudo-static in Nginx

Quoting Baidu's explanation of pseudo-static:...

MySQL join buffer principle

Table of contents 1. MySQL join buffer 2. JoinBuf...

How to mark the source and origin of CSS3 citations

I am almost going moldy staying at home due to th...

Detailed installation tutorial of Docker under CentOS

Docker is divided into CE and EE. The CE version ...

New settings for text and fonts in CSS3

Text Shadow text-shadow: horizontal offset vertic...

An example of implementing a simple infinite loop scrolling animation in Vue

This article mainly introduces an example of Vue ...

MySQL controls the number of attempts to enter incorrect passwords

1. How to monitor MySQL deadlocks in production e...

Docker configuration Alibaba Cloud Container Service operation

Configuring Alibaba Cloud Docker Container Servic...

Solution to the error in compiling LVGL emulator on Linux

Table of contents 1. Error phenomenon 2. Error An...

A brief discussion on two methods to solve space-evenly compatibility issues

Since its launch in 2009, flex has been supported...

JSONP cross-domain simulation Baidu search

Table of contents 1. What is JSONP 2. JSONP cross...

js canvas realizes random particle effects

This article example shares the specific code of ...