basename dirname命令使用范例

basename 带路径的文件名 [要去掉的后缀]

basename 路径

dirname

原文地址:http://blog.51cto.com/2685141/2084157

时间: 2024-11-26 04:27:32

basename dirname命令使用范例的相关文章

dirname命令的详解

一.功能说明 dirname命令用于显示文件或目录路径 二.语法格式 dirname 文件或目录 三.使用范例 [[email protected] ~]# dirname /data/dir/file.txt/data/dir[[email protected] ~]# cd /data/dir/[[email protected] dir]# dirname file.txt. 原文地址:http://blog.51cto.com/zpf666/2335223

dirname命令

dirname命令: 作用:去除路径的最后1级文件或目录 如: dirname /home/bb 为/home dirname /home/bb/aa.txt 为/home/bb rsync同步更新部分时用得到的(根据更新的文件路径,对文件的上一级目录进行同步) 常在脚本里 $(dirname $file)使用 原文地址:http://blog.51cto.com/yangzhiming/2122574

linux命令,文件与目录(cp,pwd,mkdir,rmdir;ls,cp,rm,mv,basename,dirname;cat,tac,more,less,head,tail,touch,umask,chattr,file,which,locate,find)

1.目录操作: (1)cd  (切换目录) cd ~   回到主目录 cd      回到主目录 cd ..   回到上层目录 cd -    回到刚才的目录 cd /var/spool/mail    绝对路径 cd ../mqueue     相对路径(由/var/spool/mail 转到/var/spool/mqueue这样写) (2)pwd (显示当前目录) pwd   显示当前目录 pwd -P   显示当前目录(不以连接文件的数据显示,而是显示正确的完整路径) (3)mkdir (

linux 常用命令(type pwd whami basename dirname alias)

linux 常用命令(type pwd whoami basenaem dirname alias) 帮助类命令: 查看命令类型:(内部命令.外部命令) # type command 命令帮助 内部命令: # help command 查看命令帮助 外部命令: # man command 查看命令帮助 # info comand 查看命令帮助 # command --help 查看命令帮助 查看当前处于那个目录:(pwd) # pwd 查看当前登录的用户名:(whoami) # whoami 取

linux命令---basename,dirname

basename:strip directory and suffix from filenames.打印路径中的文件名diename:strip non-directory suffix from file name.打印路径中的路径(除去文件名)实例: [[email protected] tmp]# basename /root/test.txt test.txt [[email protected] tmp]# dirname /root/test.txt /root [[email p

shell中的basename dirname read

1. basename 是去除目录后剩下的名字 example:shell>temp=/home/temp/1.test shell>base=`basename $temp` shell>echo $base 结果为:1.test 2. dirname 是取目录 example:shell>temp=/home/temp/1.test shell>dir=`dirname $temp` shell>echo $dir 结果为:/home/temp 另一种实现的方法:

变量-basename dirname

$0 获取文件名和文件所在路径(如果带路径执行的花) [[email protected] day2]# cat n.sh dirname $0 basename $0 [[email protected] day2]# sh `pwd`/n.sh /server/scripts/day2 n.sh [[email protected] day2]# dirname /server/scripts/day2/n.sh /server/scripts/day2 [[email protected]

basename/dirname 获取文件名/路径

http://ruby-doc.org/core-2.1.2/File.html#method-c-dirname (1)basename(file_name [, suffix] ) → base_name Returns the last component of the filename given in file_name, which can be formed using bothFile::SEPARATOR and File::ALT_SEPARATOR as the separ

Linux常用基本命令(rename,basename,dirname)

rename:重命名文件, 我下面的操作是在ubuntu16.04发行版 演示的,centos下面的语法有些不同 1,首先,生成1到100命名的.html后缀的文件 [email protected]:~/linux/rename$ ls [email protected]:~/linux/rename$ touch {1..100}.html [email protected]:~/linux/rename$ ls 100.html 21.html 33.html 45.html 57.htm