08 2010 档案
Forward: Mounting Windows SMB File Shares Using Cifs
摘要:Reference:http://ubuntuforums.org/showthread.php?t=288534In the world of linux and Samba File Shares, there are essentially two ways to mount your SMB shares. Of course, you can always access your shares via the Places->Network dialog, where you can go to town looking through your shared drives.
阅读全文
转载:args -- build and execute command lines from standard input
摘要:xargs (1) - build and execute command lines from standard input.该工具的强大之处在于将前一条命令的输出, 可以当作后一条命令的参数。 和管道有点像, 但不一样。 管道是把前一条命令的输出当作后一条命令的输入。举例:$ lserrorc shellc listfilec outputc pidc filelisttxt txt irc管道$ ls | nlXargs $ls | xargs -t -i mv {} {}.bak$ ls -Serrorc.bak listfilec.bak pidc.bak txt.bakshellc
阅读全文
转载: Linux文件查找命令find,xargs详述
摘要:http://www.linuxsir.org/main/?q=node/137总结:zhy2111314来自:LinuxSir.Org整理:北南南北摘要:本文是find 命令的详细说明,可贵的是针对参数举了很多的实例,大量的例证,让初学者更为容易理解;本文是zhyfly兄贴在论坛中;我对本文进行了再次整理,为方便大家阅读;目录版权声明前言:关于find命令一、find 命令格式1、find命令的一般形式为;2、find命令的参数;3、find命令选项;4、使用exec或ok来执行shell命令;二、find命令的例子;1、查找当前用户主目录下的所有文件;2、为了在当前目录中文件属主具有读、写
阅读全文