Displaying 2 results from an estimated 2 matches for "hugo1".
Did you mean:
hugo
2008 Mar 05
1
check join Linux (SAMBA) to Domain controller Win2003!
...winbind enum groups = yes
# template homedir = /home/winnt/%D/%U
# template shell = /bin/bash
#============================ Share Definitions ==============================
[users]
comment = Du lieu chung cua moi nguoi
path = /users/
valid users = hugo hugo1 quanghuy
public = yes
writable = yes
printable = no
create mask = 0765
[Public]
comment = Du lieu Public cua moi nguoi
path = /public/
public = yes
only guest = yes
writable = yes
printable = no
then apply: testparm smb.conf --> OK
final run :...
2008 Jul 18
2
name returned by lapply
Hi there,
I have a very simple question. If I execute the following code:
test <- function(x) {
name <- paste(x,"info_within_function")
c(1,2,3,4,5)
}
ret <- lapply(1:10, test)
, I end up with a list and each entry is just numbered [[1]], [[2]], ... [[10]]
How can I force the result entries gettings names which are determined within
the function. For this example,