BASENAME.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
- .TH BASENAME 1
- .SH NAME
- basename, dirname - strip off file prefixes and suffixes
- .SH SYNOPSIS
- fBbasename fIfilefR [fIsuffixfR]fR
- .br
- fBdirname fIfilefR
- .de FL
- .TP
- \fB\$1\fR
- \$2
- ..
- .de EX
- .TP 20
- \fB\$1\fR
- # \$2
- ..
- .SH OPTIONS
- (none)
- .SH EXAMPLES
- .EX "basename /user/ast/file.c" "Strips path to yield fIfile.cfP"
- .EX "basename /user/file.c .c" "Strips path and fI.cfP to yield fIfilefP"
- .EX "dirname /user/file.c" "Strips basename to yield fI/userfP"
- .SH DESCRIPTION
- .PP
- .I Basename
- removes the initial directory names (if any) yielding the name of the
- file itself.
- If a second argument is present, it is interpreted as a suffix and is
- also stripped, if present.
- .PP
- .I Dirname
- removes the final component of a path, yielding the directory a file is in.
- .PP
- These programs are primarily used in shell scripts.