ex58.sh
来自「Shall高级编程」· Shell 代码 · 共 34 行
SH
34 行
#!/bin/bash# Backs up all files in current directory modified within last 24 hours#+ in a "tarball" (tarred and gzipped file).BACKUPFILE=backup-$(date +%m-%d-%Y)# Embeds date in backup filename.# Thanks, Joshua Tschida, for the idea.archive=${1:-$BACKUPFILE}# If no backup-archive filename specified on command line,#+ it will default to "backup-MM-DD-YYYY.tar.gz."tar cvf - `find . -mtime -1 -type f -print` > $archive.targzip $archive.tarecho "Directory $PWD backed up in archive file \"$archive.tar.gz\"."# Stephane Chazelas points out that the above code will fail#+ if there are too many files found#+ or if any filenames contain blank characters.# He suggests the following alternatives:# -------------------------------------------------------------------# find . -mtime -1 -type f -print0 | xargs -0 tar rvf "$archive.tar"# using the GNU version of "find".# find . -mtime -1 -type f -exec tar rvf "$archive.tar" '{}' \;# portable to other UNIX flavors, but much slower.# -------------------------------------------------------------------exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?