Displaying 4 results from an estimated 4 matches for "path_to_my_fil".
Did you mean:
path_to_my_file
2012 Mar 23
1
[libvirt] Problem with Open vSwitch and dnsmasq
...55.0
ifconfig port2 up
/usr/sbin/dnsmasq --strict-order --bind-interfaces --except-interface lo
--listen-address 192.168.100.128 --dhcp-range 192.168.100.129,192.168.100.139 --dhcp-leasefile=/var/lib/libvirt/dnsmasq/vlan2.leases --dhcp-lease-max=11 --dhcp-no-override --log-queries --log-facilities=/path_to_my_file/my_file
tailf /path_to_my_file/my_file
obtaining the following output:
dnsmasq-dhcp[]: DHCPDISCOVER(port2) 52:94:00:02:a7:1e
dnsmasq-dhcp[]: DHCPOFFER(port2) 192.168.100.129 52:94:00:02:a7:1e
...
dnsmasq-dhcp[]: DHCPDISCOVER(port2) 52:94:00:02:a7:1e
dnsmasq-dhcp[]: DHCPOFFER(port2) 192.168.100.1...
2009 Mar 30
1
how to input multiple .txt files
how to input multiple .txt files?
A data folder has lots of .txt files from different customers.
Want to read all these .txt files to different master files:
such as:
cust1.xx.txt, cust1.xxx.txt, cust1.xxxx.txt,.............. to master file: X.txt
cust2.xx.txt, cust2.xxx.txt, cust2.xxxx.txt,.............. to master file: Y.txt
Thanks!
[[alternative HTML version deleted]]
2008 Mar 11
2
Error opening SHP file (maptools)
I am having difficulty loading a points shapefile (1600 records) I generated from ArcGIS as a PointsSpatialDataFrame using the maptools readShapePoints function.
library(maptools)
surveypts <- readShapePoints(system.file("C:/temp/survey.shp", package="maptools")[1]
Error in getinfo.shape(filen) : Error opening SHP file
I've tried numerous re-exports and renames of the
2009 Apr 01
0
回复: R-help Digest, Vol 73, Issue 32
...Mike.Lawrence@dal.ca>
Subject: Re: [R] how to input multiple .txt files
To: Qianfeng Li <qflichem@yahoo.com>
Cc: r-help@r-project.org
Message-ID:
<37fda5350903300455y4fca4f73h792cd88e375e4468@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
my_files = list.files(path=path_to_my_files,pattern='.txt',full.names=TRUE)
a=NULL
for(this_file in my_files){
a=rbind(a,read.table(this_file))
}
write.table(a,my_new_file_name)
On Sun, Mar 29, 2009 at 10:37 PM, Qianfeng Li <qflichem@yahoo.com> wrote:
>
>
> how to input multiple .txt files?
>
> A data...