사용자 도구

사이트 도구


devel:bash:expression

Bash

Expression

#!/bin/sh
#
 
expression() {
file="/home/starlits/html/long.file.name"
 
echo "
${file##/*/}    #                     long.file.name
${file#/*/}     #       starlits/html/long.file.name
$file           # /home/starlits/html/long.file.name
${file%.*}      # /home/starlits/html/long.file
${file%%.*}     # /home/starlits/html/long
"
}
expression
devel/bash/expression.txt · 마지막으로 수정됨: 2007/05/11 19:44 저자 starlits