similar to: convert standard time to unix time bash

Displaying 20 results from an estimated 10000 matches similar to: "convert standard time to unix time bash"

2009 Jun 12
4
IPv6 docs, howtos, descriptions
I know...google...BUT: Does someone has good howtos, docs, descriptions, opinions in forums, or similar things about IPv6 and "related things"? I just think it would be a very good idea to collect some links about it... Regards, and thank you in anticipation -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Sep 24
2
print.data.frame : row.name = FALSE not having intended effect
Hi, Does anybody know if row.name = FALSE actually works in v2.6.2? Because it isn't working for me... here is some sample code and output: ====+====+====+====+====+====+====+====+====+====+ > print(x,row.names = FALSE) party_abbr candidate_name votes_candidate 2 DFL AMY KLOBUCHAR 1,278,849 5 R MARK KENNEDY 835,653 4 IP
2008 Sep 26
3
Newbie: Ranking a data frame, grouped by 2 or more columns
Hi, I'd like to rank obs in a data frame as subset by 2 or more columns... The example input would look like the following: ====+====+====+====+ x y v -- -- -- a w 200 a w 100 b w 500 b w 200 b z 300 b z 400 ====+====+====+====+ And the data frame I want to create is below: ====+====+====+====+ x y v rank -- -- -- ---- a w 200 1 a w 100 2
2019 Oct 18
4
Centos 8 Mate?
On 10/17/19 4:08 PM, Johnny Hughes wrote: > On 9/24/19 2:41 PM, Frank Cox wrote: >> Without wanting to sound too pushy, I'm wondering if there is any update on the status of Mate now that Centos 8 has been released? >> >> I would love to jump on C8 and start playing with it, but the lack of Mate is kind of a showstopper for me at the moment. >> > > Is gnome3
2005 Jul 11
2
DTMF not sending properly via IAX
I'm not sure if this is a -users or a -dev question, since the answer probably comes down to something in the code. I'm running the latest CVS-STABLE, and am subscribed to PSTN service using IAX2 via Voiptalk in the UK. I've just been alerted by a customer that the sending of DTMF from my asterisk box to a remote PSTN user doesn't work, although it used to. To test it, I have
2019 Sep 24
13
Centos 8 Mate?
Without wanting to sound too pushy, I'm wondering if there is any update on the status of Mate now that Centos 8 has been released? I would love to jump on C8 and start playing with it, but the lack of Mate is kind of a showstopper for me at the moment. -- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com
2010 Sep 01
1
Transparent File Caching
This is not really a samba question, but if anyone would know that answer, it would be this group. :) Are there any Open Source projects that offer network file caching for SMB/CIFS? Something like what Squid does for HTTP. If not, do you think it would be difficult to position Samba into such a role? We are going to use Cisco WAAS for branch locations, but I think the cache in the devices may
2008 Sep 22
1
Hmisc and Ubuntu (aptitude install)
Hi, I'm trying to get the Hmisc module on my Ubuntu Hardy Heron install. I tried getting Hmisc from within R by issuing the standard 'install.packages' command, but it said I needed 'gfortran' to compile. I thought I could circumvent this by using 'aptitude' to get the package 'r-cran-hmisc', but when I got it, the package had critical missing parts (got
2008 Sep 23
1
Newbie: Formatting numbers with commas
Hi, Search through the R archives, and couldn't find my answer... how do you format numbers with commas (standard American, one every three digits)? Thanks, Matt -- It is from the wellspring of our despair and the places that we are broken that we come to repair the world. -- Murray Waas
2019 Oct 17
2
Centos 8 Mate?
On Thu, Oct 17, 2019 at 09:08:28AM -0500, Johnny Hughes wrote: > On 9/24/19 2:41 PM, Frank Cox wrote: > > Without wanting to sound too pushy, I'm wondering if there is any update on the status of Mate now that Centos 8 has been released? > > > > I would love to jump on C8 and start playing with it, but the lack of Mate is kind of a showstopper for me at the moment. >
2007 Nov 27
2
exporting clustering results to table
Hello list, the following approach did not work: clustersA <- pam(distances, nkA, diss=TRUE); gc(); filenameclu = paste("filenameclu", ".txt"); write.table(clustersA , file=filenameclu,sep=","); although it worked with clustersA <- hclust(distances, method="ward"); and a consecutive kclassA <- cutree(clustersA, k=nkA); filename =
2009 Mar 31
2
"digits" in round()
Hi Folks, Compare print(1234567890,digits=4) # [1] 1.235e+09 print(1234567890,digits=5) # [1] 1234567890 Granted that digits: a non-null value for 'digits' specifies the minimum number of significant digits to be printed in values. how does R decide to switch from the "1.235e+09" (rounded to 4 digits, i.e. the minumum, in "e" notation) to
2003 Jun 17
2
Can only ssh as root
I have an AIX 4.3.3.10 Box running Openssh 3.4. I am using Putty to get to this Ssh server. All is good when I Ssh in using root. But when I try another user profile I get the below: Jun 16 17:22:21 walker sshd[8812]: fatal: login_get_lastlog: Cannot find account for uid 95 In addition, I am kicked out of this session right now. TIA!
2011 May 04
2
Remove "name" part of SIP From header
Relatively new to Asterisk and SIP and am trying to run a proof of concept using Asterisk to make an outbound call through an Audiocodes gateway via SIP using Asterisk version 1.6.1.12. The specific requirements of the gateway in the configuration I am trying to use specify that the Name part of the From header be blank with the outbound number that needs to be dialed in the number field of
2013 Jun 24
2
[OT] bash here documents
Suppose I have this C++ program: #include <iostream> int main (int argc, char** argv) { while (1) { char cmd[80]; std::cin.getline(cmd, 80); std::cout << "response to " << cmd << std::endl; } } compiled by: c++ -o junk junk.cpp and I have this bash script: #!/bin/bash ./junk <<EOF blah bleh \cC EOF echo "Something
2014 Dec 02
1
Help with at Bash script
On Tue, Dec 2, 2014 at 2:19 PM, Alexander Dalloz <ad+lists at uni-x.org> wrote: > Am 02.12.2014 um 19:05 schrieb James B. Byrne: > >> I am attempting to get a script borrowed from DJB to work on my CentOS-6.6 >> box. Simplified it looks like this: >> >> tcpdump -l -n -e port 53 \ >> | awk '{if ($14 ~ /A.*?/) print $15}' \ >> | while
2010 Oct 05
2
Checking SIP Headers existence and content
Hello, I would like to verify if a specific SIP header exists, and if yes, extract the partial content from another header. 1. Is there a way to verify if a specific header exists? 2. How do I extract data that is between the first : and the following @? Specifically, The data looks like <sip:1234567890 at 10.0.0.1:5060> and I would like to get only the 1234567890 I tried to use the CUT()
2009 Jan 03
1
convert non-standard mbox to maildir
Hi, Let me start with wishing you all the best for this new year, and I hope we'll see a lot of new features and not so much new bugs ;-) I'm trying to convert a number of PSTs to maildir. Just plain drag&drop in Outlook doesn't work (gives a very cryptic error message in a certain folder, but that folder is perfectly all right), and using the import option also barfs when
2012 Aug 06
1
How to convert data to 'normal' if they are in the form of standard scientific notations?
Dear R users I read two csv data files into R and called them Tem1 and Tem5. For the first column, data in Tem1 has 13 digits where in Tem5 there are 14 digits for each observation. Originally there are 'numerical' as can be seen in my code below. But how can I display/convert them using other form rather than scientific notations which seems a standard/default? I want them to be in
2013 Jun 19
1
fail2ban with standard Apache log format?
I want to use fail2ban on CentOS 6 to monitor Apache with the standard default logfile format ("combined"). Has anyone here succeeded in doing so? The format has the IP at the start of the line, followed by two dashes (if no authentication) and THEN the timestamp. What I've read on the fail2ban wiki seems to say that the timestamp must ALWAYS be at the start of the line, followed by