search for: bnm

Displaying 4 results from an estimated 4 matches for "bnm".

Did you mean: bm
2010 Jan 18
2
An argument processing puzzle.
...by value syntax. I.e. I want to set up my argument processing so that mv(a,b) mv("a",b) mv(a,"b") mv("a","b") are all equivalent. I thought I had achieved this using anm <- if(is.character(substitute(a))) a else deparse(substitute (a)) bnm <- if(is.character(substitute(b))) b else deparse(substitute (b)) and then working with ``anm'' and ``bnm''. However the real reason I wanted to be able to use text strings rather than names as arguments was so that I could do things like mv(paste("x",i,sep="....
2005 Aug 30
6
SYSLINUX 3.11-pre10
Okay, the serial port feature in 3.11-pre9 was of course completely broken (I seem to have bad luck with -pre9's :)... a 3.11-pre10 is now available, and it does seem to have a more reliable handling of arrow keys ... *but not perfect*. There simply is no way to reliably detect both [Esc] and arrow keys on existing serial consoles. -hpa
2018 Mar 25
2
Is it possible to clone an NT ACL from one file or dir to a totally different file or dir ?
...2) Create or use an existing destination/target file or directory (call it realFile here) 3) Remove all existing perms on realFile: setfacl -b realFile setfattr -x user.DOSATTRIB realFile sudo setfattr -x security.NTACL realFile 4) Clone the extended ACL: getfacl templateFile | sudo setfacl -bnM - realFile 5) Clone the DOS attributes getfattr -d templateFile | sed -e 's/templateFile\/realFile/' | setfattr --restore=- 6) Clone the NTACL getfattr -n security.NTACL templateFile | sed -e 's/templateFile/realFile/' | sudo setfattr --restore=- By default, step 4 takes for...
2018 Mar 25
0
Is it possible to clone an NT ACL from one file or dir to a totally different file or dir ?
...ectory > (call it realFile here) > > 3) Remove all existing perms on realFile: > > setfacl -b realFile > > setfattr -x user.DOSATTRIB realFile > > sudo setfattr -x security.NTACL realFile > > 4) Clone the extended ACL: > > getfacl templateFile | sudo setfacl -bnM - realFile > > 5) Clone the DOS attributes > > getfattr -d templateFile | sed -e 's/templateFile\/realFile/' | > setfattr --restore=- That had a typo when I shortened it to an example form. Should have been 5) Clone the DOS attributes getfattr -d templateFile | sed -e 's...