Displaying 2 results from an estimated 2 matches for "_bak".
Did you mean:
_back
2011 Aug 09
4
Nesting select and text_field in radio_button
I''m creating my first Rails app and need an idea creating forms.
I have Meeting model with place attribute.
I want to have two fields for Meeting.place = one would be select with
places from other meetings or text_field if the place is being used
first time. User would be selecting radio_button of which field he has
used.
So is there any way to nest select and text_field within 2
2004 Apr 28
0
problem with rsync usage across NFS
...at will lead to a problem.
(1) On sun, a textfile file is generated in directory, say, /sun/test/
We use the following to deliver it to the NFS server's empty
direcotry /nfs_path/test/:
rsync --verbose --archive --hard-links --whole-file --delete --delete-after
--exclude='*_bak*' --backup --suffix=_bak123
/sun/test/ /nfs_path/test/
(2) We login to one of Linux clients.
And we do the following
tail -f /nfs_path/test/file
(3) On Sun, we update the file.
And we use the same rsync command as listed in (1) to deliver the
data file.
(4)...