- 论坛徽章:
- 0
|
大假未完,天氣差,老婆佔著台式電腦炒股,還未買 Wireless Lan station , 筆記
本不能上網,就那 ruby 書來看,順便試試書中所寫,看到ruby 內建一個method s.reverse
可把字串反過來,反正沒事,用bash 寫一個看看可不可以?我不知有沒有人寫過,但還是重新
寫一個,因為好玩。 :) Linux 好像有一個這樣的命令..忘記了
#! /bin/bash
# reverse the word. Usage: $0 argument(s)
# Jun 29, 2007 [email]twf_cc@yahoo.com.hk[/email]
# public domain
# function
reverse() {
# init some staff
local output=""
# command line argument
local word=$1
# length of input
local wlength=${#word}
# split the word,put single char in $output
# from the last to the first.
for (( i=$(( wlength - 1 )) ; i>=0 ; i-- ))
do
local split_word=${word:$i:1}
output=${output}${split_word}
done
# print result
echo $output
}
# reverse all arguments
while [ -n "$1" ]
do
reverse "$1"
shift
done |
|