In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
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)
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.