Creating Practical Scripts Part IV

来源:互联网 发布:美图app软件 编辑:程序博客网 时间:2024/06/06 02:23
Creating Practical ScriptsPart IV 
 
**************************************

Chapter   24 Writing Simple Script Utilities

**************************************


Section :   Performing Archives

===================================
   The tar command is used to archive entire directories into a single file.
   
   
   $ tar -cf archive.tar /home/Christine/Project/*.*
   
   $ tar -cf archive.tar /home/Christine/Project/*.* 2>/dev/null
   
   compress the file.   by simply adding the -z option.
   
   $ tar -zcf archive.tar.gz /home/Christine/Project/*.* 2>/dev/null
   
   

Section :  Managing User Accounts

===================================


Section : Monitoring Disk Space 

==================================








**************************************

Chapter   25 Producing Scripts for Database, Web, and E-Mail

**************************************


Section :   Using a MySQL DataBase

===================================




Section :  Using the Web

==========================


Section : Using E-Mail

=========================