1. 程式人生 > 資訊 >我國破獲一起盜竊《大話西遊 2》賬號案件:公安部提示小心木馬程式

我國破獲一起盜竊《大話西遊 2》賬號案件:公安部提示小心木馬程式

shell字串的擷取的問題:
一、Linux shell 擷取字元變數的前8位,有方法如下:
1.expr substr “$a” 1 8
2.echo $a|awk ‘{print substr(,1,8)}’
3.echo $a|cut -c1-8
4.echo $
5.expr $a : ‘\(.\\).*’
6.echo $a|dd bs=1 count=8 2>/dev/null

二、按指定的字串擷取
1、第一種方法:
${varible##*string} 從左向右擷取最後一個string後的字串
${varible#*string}從左向右擷取第一個string後的字串
${varible%%string*}從右向左擷取最後一個string後的字串
${varible%string*}從右向左擷取第一個string後的字串
“*”只是一個萬用字元可以不要

例子:
$ MYVAR=foodforthought.jpg
$ echo ${MYVAR##*fo}
rthought.jpg
$ echo ${MYVAR#*fo}
odforthought.jpg

2、第二種方法:${varible:n1:n2}:擷取變數varible從n1到n2之間的字串。

可以根據特定字元偏移和長度,使用另一種形式的變數擴充套件,來選擇特定子字串。試著在 bash 中輸入以下行:
$ EXCLAIM=cowabunga
$ echo ${EXCLAIM:0:3}
cow
$ echo ${EXCLAIM:3:7}
abunga

這種形式的字串截斷非常簡便,只需用冒號分開來指定起始字元和子字串長度。

三、按照指定要求分割:
比如獲取去掉字尾名的字首
ls -al | cut -d “.” -f1
比如獲取字尾名
ls -al | cut -d “.” -f2

here string可以看成是here document的一種定製形式. 除了COMMAND <<<$WORD, 就什麼都沒有了,de>$WORDde>將被擴充套件並且被送入de>COMMANDde>的stdin中.

  1String="This is a string of words."
2
3read -r -a Words <<< "$String"
4# "read"命令的-a選項
5#+ 將會把結果值按順序的分配給陣列中的每一項.
6
7echo "First word in String is: ${Words[0]}" # This
8echo "Second word in String is: ${Words[1]}" # is
9echo "Third word in String is: ${Words[2]}" # a
10echo "Fourth word in String is: ${Words[3]}" # string
11echo "Fifth word in String is: ${Words[4]}" # of
12echo "Sixth word in String is: ${Words[5]}" # words.
13echo "Seventh word in String is: ${Words[6]}" # (null)
14 # $String的結尾.
15
16# 感謝, Francisco Lobo的這個建議.

例子 17-13. 在一個檔案的開頭新增文字

  1#!/bin/bash
2# prepend.sh: 在檔案的開頭新增文字.
3#
4# Kenny Stauffer所捐助的指令碼例子,
5#+ 本文作者對這個指令碼進行了少量修改.
6
7
8E_NOSUCHFILE=65
9
10read -p "File: " file # 'read'命令的-p引數用來顯示提示符.
11if [ ! -e "$file" ]
12then # 如果這個檔案不存在, 那就進來.
13 echo "File $file not found."
14 exit $E_NOSUCHFILE
15fi
16
17read -p "Title: " title
18cat - $file <<<$title > $file.new
19
20echo "Modified file is $file.new"
21
22exit 0
23
24# 下邊是'man bash'中的一段:
25# Here String
26# here document的一種變形,形式如下:
27#
28# <<<word
29#
30# word被擴充套件並且被提供到command的標準輸入中.