nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

want a script keep backup of all users history.

This is a discussion on want a script keep backup of all users history. within the Shell scripting forums, part of the Development/Scripting category; Hi All, I want to write a script or may be a cron Job, which will make a backup of ...


Go Back   nixCraft Linux Forum > Development/Scripting > Shell scripting

Register FAQ Members List Calendar Forgotten your password? Mark Forums Read
  #1 (permalink)  
Old 08-22-2005, 06:23 PM
Member
User
 
Join Date: Jul 2005
Posts: 85
Rep Power: 0
ricc
Default want a script keep backup of all users history.

Hi All,
I want to write a script or may be a cron Job, which will make a backup of the history file. For ex., an administrator may want to keep a backup of all the users history file silently, maybe everyday, just to keep a track of all the commands run by the user.

Thanks
rc
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-22-2005, 09:43 PM
rockdalinux's Avatar
Contributors
User
 
Join Date: May 2005
Location: Bangalore
My distro: RHEL, HP-UX, Solaris, FreeBSD, Ubuntu
Posts: 581
Rep Power: 7
rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough
Default

Well if your shell is /bin/bash then following should work:

Code:
BAK="/backup"
a=$(cut -d: -f6 /etc/passwd)
for i in $a
do
 [ -f $i/.bash_history ] && B="$B $i/.bash_history" || :
done
[! -d $BAK ] && mkdir -p $BAK || :
tar -zcvf $BAK/history.tar.gz $B
Test it and lemme know
__________________
Rocky Jr.
You may have my body & soul, but you will never touch my pride!

If you have knowledge, let others light their candles at it.

Certified to work on HP-UX / Sun Solaris / RedHat
Reply With Quote
  #3 (permalink)  
Old 08-25-2005, 04:43 PM
Member
User
 
Join Date: Jul 2005
Posts: 85
Rep Power: 0
ricc
Default

Thankx Rocky,
It works, but there was just a typo in the script.

Code:
[! -d $BAK ] && mkdir -p $BAK || :
I believe, would contain a space after "[" and before "!".

Code:
[ ! -d $BAK ] && mkdir -p $BAK || :
I am pointing this out just to let others know too and pls don't think otherwise.
I would like you to explain what does the " || : " do. I might also want you to include a date on the tar file generated, if we can. This way, we can have date wise history backups

Thanks again for your help.
rc
Reply With Quote
  #4 (permalink)  
Old 08-26-2005, 01:30 AM
rockdalinux's Avatar
Contributors
User
 
Join Date: May 2005
Location: Bangalore
My distro: RHEL, HP-UX, Solaris, FreeBSD, Ubuntu
Posts: 581
Rep Power: 7
rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough
Default

Opps

Thanks for making it correct
__________________
Rocky Jr.
You may have my body & soul, but you will never touch my pride!

If you have knowledge, let others light their candles at it.

Certified to work on HP-UX / Sun Solaris / RedHat
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
let users change password using perl script? james bond Getting started tutorials 9 05-24-2007 11:32 PM
need help in writing backup script vishaltitre Shell scripting 4 05-23-2007 11:07 PM
Script to add users to multiple servers. deepakhg Shell scripting 0 03-17-2007 04:02 AM
How to run script when users logouts tom Shell scripting 1 09-01-2005 12:42 AM
shell script for finding users not logged on for last 10 day ganes Shell scripting 4 07-06-2005 12:01 PM


All times are GMT +5.5. The time now is 02:08 AM.


Powered by vBulletin® Version 3.7.4 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36