rm

rm ecluding files:

$rm !(*.foo|*.bar|*.baz)

tar

Copy Files and keep dir structure

Example: Back up all *.pl and *.sh files to a new directory with timestamp and keep the original directory structure.

ArchT60::/tmp
kent$ tree /tmp/test                                                                                                           
/tmp/test
|-- a.txt
|-- b.pl
|-- c.pl
`-- one
    |-- one.pl
    |-- one.txt
    `-- two
        |-- two.pl
        `-- two.sh

ArchT60::/tmp/bak
kent$ tree /tmp/bak                                                                                                            
/tmp/bak
0 directories, 0 files 


ArchT60::/tmp
kent$ mkdir -p /tmp/bak/bak$(date +%Y%m%d) && find /tmp/test -regex ".*.[pl|sh]" -print | xargs tar -cf -  | tar -xf - -C /tmp/bak/bak$(date +%Y%m%d)

ArchT60::/tmp
kent$ tree /tmp/bak                                                                                                            
/tmp/bak
`-- bak20110306
    `-- tmp
        `-- test
            |-- b.pl
            |-- c.pl
            `-- one
                |-- one.pl
                `-- two
                    |-- two.pl
                    `-- two.sh

Transfer files/dirs to remote (ssh)

**-** is the key. (standard input)

tar -cf - /home/kent/Desktop/tmp/myFile |ssh user@host "cd someDir; tar -xf - "

cp & rm

#bash:
shopt -s extglob
$ rm !(*.foo|*.bar|*.baz) `

Zsh also has its own extended globs:

setopt extended_glob
rm -rf ^var_(opt|log)

tee

kent$ cat t.txt                                                                 
this is the first line
now comes the 2nd line

kent$ cat t.txt|tee >(sed -n 1p >a.txt) >(sed -n 2p >b.txt)                    
this is the first line
now comes the 2nd line

kent$ cat a.txt                                                               
this is the first line
ArchT60::/tmp
kent$ cat b.txt                                                              
now comes the 2nd line

sort

<<Back