
bash
文章平均质量分 82
macyang
Chance is waiting for prepared people and my Status is read the fucking source code.
展开
-
4 Bash If Statement Examples ( If then fi, If then else fi, If elif else fi, Nested if )
Bash conditional statements perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false. These statements are used to execute dif转载 2012-06-16 14:23:15 · 2858 阅读 · 0 评论 -
Bash scripting Tutorial
1. Hello World Bash Shell Script First you need to find out where is your bash interpreter located. Enter the following into your command line: $ which bash转载 2012-07-29 15:22:59 · 2302 阅读 · 0 评论 -
5 Bash Case Statement Examples
Bash shell case statement is similar to switch statement in C. It can be used to test simple values like integers and characters.Case statement is not a loop, it doesn’t execute a block of code fo转载 2012-06-16 14:17:50 · 899 阅读 · 0 评论 -
The Ultimate Bash Array Tutorial with 15 Examples
An array is a variable containing multiple values may be of same type or of different type. There is no maximum limit to the size of an array, nor any requirement that member variables be indexed or转载 2012-06-16 13:05:20 · 947 阅读 · 0 评论 -
Bash Special Parameters Explained with 4 Example Shell Scripts
As part of our on-going bash tutorial series, we discussed about bash positional parameters in our previous article. In this article let us discuss about the bash special parameters with few practic转载 2012-06-16 14:29:03 · 747 阅读 · 0 评论 -
6 Bash Conditional Expression Examples ( -e, -eq, -z, !=, [, [[ ..)
Bash expression is the combination of operators, features, or values used to form a bash conditional statement. Conditional expression could be binary or unary expression which involves numeric, strin转载 2012-06-16 14:21:23 · 3380 阅读 · 0 评论 -
Keeping You in the Loop – Bash For, While, Until Loop Examples
Looping statements are used to force a program to repeatedly execute a statement. The executed statement is called the loop body.Loops execute until the value of a controlling expression is 0. The转载 2012-06-16 14:19:17 · 1751 阅读 · 0 评论 -
Bash String Manipulation Examples – Length, Substring, Find and Replace
In bash shell, when you use a dollar sign followed by a variable name, shell expands the variable with its value. This feature of shell is called parameter expansion.But parameter expansion has nu转载 2012-05-10 15:36:26 · 3905 阅读 · 0 评论 -
50 Most Frequently Used UNIX / Linux Commands (With Examples)
This article provides practical examples for 50 most frequently used commands in Linux / UNIX.This is not a comprehensive list by any means, but this should give you a jumpstart on some of the com转载 2012-06-17 11:44:39 · 1682 阅读 · 0 评论 -
What are some time-saving tips that every Linux user should know?
Here is a selection of command-line tips that I've found useful when working on Linux. The emphasis is on somewhat less-known techniques that are generally important or useful to technical users. It转载 2013-01-13 22:09:26 · 780 阅读 · 0 评论