Get the App
SLTechnology News&Howtos  ›  Development  › 

How does a shell script read values in a properties file

Shulou Source: shulou.com Published: 2022-06-01 06:23:32 09月19日 Update

This article mainly explains how the shell script reads the values in the properties file. Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how the shell script reads the values in properties files.

The properties file shown in the following code is a common property file in various programming languages, and reading value through key is an extremely common requirement.

# Port server.port=8520# maximum total upload file spring.servlet.multipart.max-request-size=10MB# maximum value of a single file spring.servlet.multipart.max-file-size=10MB

Shell in Linux usually requires programmers to write a method to read properties files. The following is a method I wrote, personal test is effective, you are welcome to use it.

# read property file specified key value get_value_of_properties_file () {result= "" proFilePath= "$1" key= "$2" if ["WJA$ {key}" = "WJA"]; then echo "parameter error, failed to specify a valid Key." Echo "" > & 2 exit 1 fi if [!-f ${proFilePath}]; then echo "property file (${proFilePath}) does not exist." Echo "> & 2 exit 1 fi if [!-r ${proFilePath}]; then echo" the current user does not have readable access to the properties file (${proFilePath}). " Echo "" > & 2 exit 1 fi keyLength=$ (echo ${key} | wc-L) lineNumStr=$ (cat ${proFilePath} | wc-l) lineNum=$ ((${lineNumStr})) for ((I = 1; I)

Tags: Files properties methods scripts maximum valid content maximum learning practical deeper code interest single parameter practical practical commonly used common easy to operate Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno OPPO Reno Microsoft Redmi Docker macOS