only numbers, letters, or underscores, and cannot start with a number3, as far as possible to see the name of the ideaVI. Bash configuration files1. Profileclass : Provides configuration for the interactive login shell process.• Valid profiles for all users are globally valid:/etc/profile and/etc/profile.d/*.sh• Only the profile that is valid for the current user is valid for the user: ~/bash_profileNote: The function of profile type configuration fi
First part: Linux command line"Linux command line and Shell Scripting Encyclopedia" chapter I: the first knowledge of Linux shell"Linux command line and Shell Scripting Encyclopedia" chapter II: Into the shell"Linux command line a
From a programmer's point of view, the shell itself is a program written in C language, from the user's point of view, the shell is the user and the Linux operating system communication Bridge. Users can either enter command execution and use shell scripting to accomplish more complex operations. In the Linux GUI incre
Shell Script Introduction
Shell is a scripting language
You can use logical judgments, loops, and other syntax
Functions can be custom-defined
The shell is a collection of system commands
Shell scripts enable automated operations, which can greatly i
part of a combination statement, such as OK Error | | Other
The end of a series of statements, such as error; Ok
In a judgment statement, including Test, if, while, and so on.These two combinations are used together to save you a lot of time when you debug. For defensive programming, it is necessary to insert them before writing the first line of specific code. Ask yourself, how many times can you write the code at once? Most code, before committing, usually undergoes a process of repeated d
1#!/bin/Bash2 ############################################3# @content Chapter8,9of Linux Command line and Shell Scripting Bible4 # @reader Gavin5# @date the/ A/ -6 ############################################7CHAPTER88 9+user varriable make the shell A-computer programTen 1when assigning a value to a user-defined variable, no spaces can appear One 2.
Do monitoring and backup up to1. What is a shell script?It's a scripting language, not a programming language.You can use some logical judgments, loops, and other syntaxYou can customize the sub-functionis a collection of system commandsShell scripts enable automated operations, greatly increasing our productivity first shell script: mkdir
, The interpreter (interpreter) needs to read the source code that we wrote and convert it to the target (object), which is then run by the computer. Because each execution of the program is more than the compilation process, so efficiency has decreased.The advantage of using scripting languages is that they are mostly run at a higher level than the compiled language and can easily handle objects such as files and directories, and the disadvantage is
bash_rematch[] array #re1.sh#!/bin/bash# manage to know your nameread-p "Please input your fullname:" Nameif [[$NAME =~ (. *) [[: Space:]] (. *)]];thenecho "Your last name ${bash_rematch[2]}" echo "Your name is ${bash_rematch[1]}" echo "Full name ${bash_rematch[0 ]} "fi execution results [[email protected] shell]#./re1.sh Please input your Fullname:liancao Liu your surname Liu you call liancao full name Liancao Liu71 scripts to guess numbers#一个猜数字的sh
Learn Shell to now, always thought that they will not commit a very two problems, the result of this book last time made a very 2, integrity not protect AH!!! I'm under the test file path except wildcard * and? What can be used outside the same thing, the result of the $home under the implementation of RM. All right, the egg hurts for the whole afternoon! Return the wood to any one of the configuration files. Warn posterity, do not use RM Test wildcar
timeThe encryption function is weak and can only meet the general requirements.There may be a risk that the script will not execute properly after encryptionNoteToday is the 94th Day of the day to accompany you and look forward to your progress .For questions and answers, please leave a comment in the blog comments section .Index of the topic of the previous periodhttp://lidao.blog.51cto.com/3388056/1914205This article is from the "Lee blog" blog, make sure to keep this source http://lidao.blog
When deploying a task, one of the necessary procedures is to send some files, such as installation packages, to a large number of servers. Although there is already a Brother Woo script available: A Python script written by the SSH and SCP features provided by the Paramiko module. But I'm still in the fear of Python (though I've worked hard in my spare time), so I've written this batch SCP scripting tool using a combination of
quotation marks can parse variables.Three, single quotation marks[[email protected] ~]# var2= ' $var 1 ' [[email protected] ~]# echo $var 2$var1As you can see from the code above, the biggest difference between single quotes and double quotes is that single quotes cannot parse variables, and what is assigned to a variable is not parsed out because it is a variable.Four, anti-quoteAnti-quotes are used primarily to parse commands[Email protected] ~]# whoamiroot[[email protected] ~]# var= ' whoami
18010th chapter using the editor10.1 Vim Editor 18110.1.1 Checking VIM Package 18110.1.2 Vim Basics 18310.1.3 Editing Data 18510.1.4 Copy and paste 18510.1.5 Find and replace 18610.2 Nano Editor 18710.3 Emacs Editor 18810.3.1 Checking Emacs Package 18910.3.2 using Emacs 190 in the console10.3.3 using Emacs 195 in a GUI environment10.4 KDE System Editor 19610.4.1 KWrite Editor 19610.4.2 Kate Editor 20010.5 GNOME Editor 20210.5.1 Start Gedit 20310.5.2
This article collects a bunch of shell scripting tricks, I said, I write a blog mainly to make some learning notes to facilitate their own review, so I will make such an article, there is nothing incomprehensible. About the origin of these techniques, eh, I also forget, may come from Theunixschool, Commandlinefu, cool and igigo.net, of course, there are some of my own experience, tube him, into my brain is
Please follow me to learn some of the basics of using scripting languages (mainly VBScript) in ASP.
Before you begin to learn the scripting language, you should understand some simple concepts--variables, processes. A variable is a named storage location in the computer's memory that contains data such as numbers or strings, which makes it easy for users to unde
contains the information and location of the source file. Referencing a hard-link file is equivalent to referencing a source fileCp-l test1 test4The-l parameter creates a hard-link test4 that points to the file test1.Note: You can only create hard links between files on the same storage media, and you cannot create hard links between files under different mount points.The parameter-s creates a symbolic link, or a soft connectionCp-s Test TEST5When copying a linked file, be aware that if you use
folders, and ended up with a single command line:
xcopy /e C:\Windows\assembly\GAC_MSIL G:\GAC_MSIL
Then look for the desired assembly in the copied directory. Ha, now we can look at the PS code, it will be a very enjoyable thing.In addition, I found an additional assembly "System.Management.Automation.dll" through the _sfx_manifest_ file and the Reflector Analysis assembly reference, and its EXE note is "Microsoft Command-Line Shell
The while loop is used to continuously execute a series of commands and to read data from the input file; the command is usually a test condition. The format is:While Commanddo Statement (s) to being executed if command is TruedoneThe command finishes, control returns to the top of the loop, and starts from the beginning until the test condition is false.The following is a basic while loop, and the test condition is: Returns True if counter is less than 5. Counter starting from 0, counter plus 1
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.