Sponsored Content
Full Discussion: How to paste properly?
Top Forums Shell Programming and Scripting How to paste properly? Post 302878947 by migurus on Monday 9th of December 2013 08:04:46 PM
Old 12-09-2013
How to paste properly?

I needed to view calendar for several months so I created a separate file for each and then pasted them like this:

Code:
 
cal Dec 2011 > x1; 
cal Jan 2012 > x2;
paste x1 x2
   December 2011            January 2012    
Su Mo Tu We Th Fr Sa    Su Mo Tu We Th Fr Sa
             1  2  3     1  2  3  4  5  6  7
 4  5  6  7  8  9 10     8  9 10 11 12 13 14
11 12 13 14 15 16 17    15 16 17 18 19 20 21
18 19 20 21 22 23 24    22 23 24 25 26 27 28
25 26 27 28 29 30 31    29 30 31

I think it can be done without creating a temp files, so I tried:

Code:
( cal Dec 2011; cal Jan 2012; ) | paste - -

but result is a mess, not what i need.

How do I put my pipes together, so the result is nice and readable as above
 

10 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Not properly shutdown

Last night my sister was on the computer and she shut it down by just pressing the power button:mad:.I heard it was never good to shutdown a unix system from the power button(I always do the shutdown -h now), how do I know if the filesystem has been damaged or something like that?:confused: (5 Replies)
Discussion started by: DISTURBED
5 Replies

2. Programming

y is this not working properly?

#include <stdio.h> #include <sys/types.h> #include <string.h> #include <sys/stat.h> #include <unistd.h> struct stat s; main() { char c; if (fork()==0) { system("clear"); do { printf("myAI\\>§ "); scanf("%s",c); if(stat(c,&s)>-1) {... (3 Replies)
Discussion started by: C|[anti-trust]
3 Replies

3. Solaris

not getting the output properly

i am entering the command, not get the total out put see the output what i am getting. SQL> select dbms_metadata.get_ddl ('TABLESPACE','SYSTEM') FROM DUAL; DBMS_METADATA.GET_DDL('TABLESPACE','SYSTEM') -------------------------------------------------------------------------------- ... (0 Replies)
Discussion started by: pmrajesh21
0 Replies

4. Shell Programming and Scripting

\n not working properly

Hi all, I'm trying to generate a series of txt files starting from a plain csv file part of my code: #!/bin/ksh INSTALLDIR=/Users/ME/Installdir CSV=CSV.csv TMP=/tmp/$(basename $0).txt tr -s "\r" "\n" < /$INSTALLDIR/$CSV > $TMP function Makefiles { printf '%24s:%30s\n' "sometext"... (1 Reply)
Discussion started by: Jive Spector
1 Replies

5. Shell Programming and Scripting

cp not coping properly

Hi, I'm trying to copy the directories from one location(/tmp/source/) to other(/tmp/dest/). for this I have written a PERL script. snippet of code $sourcePath = "/tmp/source"; $destPath = "/tmp/dest"; opendir(DIR, $sourcePath ); while($dir = readdir(DIR)) { if($dir ne "." && $dir ne... (1 Reply)
Discussion started by: prashants
1 Replies

6. IP Networking

Not able to FTP properly

FTP error: Connected to 10.58.132.123 (10.58.132.123). 220 (vsFTPd 2.0.5) 331 Please specify the password. 230 Login successful. 550 Failed to change directory. 227 Entering Passive Mode (10,58,132,123,235,54) 150 Here comes the directory listing. 226 Transfer done (but failed to open... (0 Replies)
Discussion started by: weknowd
0 Replies

7. IP Networking

Not able to FTP properly

FTP error: ftp> dir */*/*/*.zip 227 Entering Passive Mode (10,58,132,123,204,83) 150 Here comes the directory listing 226 Transfer done (but failed to open directory) And the machine where am getting the file(Client machine) has the below mentioned vsftpd.conf file. Please let me know... (2 Replies)
Discussion started by: weknowd
2 Replies

8. Shell Programming and Scripting

Bash-how to properly READ and PASTE variables.

Recently i made a script for a project at molecular dynamics but am stuck at the last step.The thing i want to do is to ask the user to input the number of particles, then replace the bolded numbers at lines 9 and 17.. code #!/bin/bash #read number of particles echo "insert the number of... (2 Replies)
Discussion started by: arisinhell
2 Replies

9. Shell Programming and Scripting

How to use Grep properly?

Hi Forum Im making a script that takes multiple unix users and lists the users and the groups that the user is part of. the grouplist looks like this grouplst="example_group1|example_group2|example_group3|example_group4" I got most of it working but Im having trouble with a while loop... (4 Replies)
Discussion started by: ajetangay
4 Replies

10. UNIX for Beginners Questions & Answers

Can't get mv to work properly

Trying to use mv in a shell script but for some reason this does not work: for f in *.wav;do mv $f $f.bwf;done I get this: usage: mv source target mv source ... directory So it's like I'm using 'mv' wrong but I can't see how. This works so the contens of the folder is read... (4 Replies)
Discussion started by: Oortone
4 Replies
INTLCALENDAR.GETERRORMESSAGE(3) 					 1					   INTLCALENDAR.GETERRORMESSAGE(3)

IntlCalendar::getErrorMessage - Get last error message on the object

       Object oriented style (method):

SYNOPSIS
public string IntlCalendar::getErrorMessage (void ) DESCRIPTION
Procedural style: string intlcal_get_error_message (IntlCalendar $calendar) Returns the error message (if any) associated with the error reported by IntlCalendar.getErrorCode(3) or intlcal_get_error_code(3). If there is no associated error message, only the string representation of the name of the error constant will be returned. Otherwise, the message also includes a message set on the side of the PHP binding. PARAMETERS
o $calendar - The calendar object, on the procedural style interface. RETURN VALUES
The error message associated with last error that occurred in a function call on this object, or a string indicating the non-existance of an error. EXAMPLES
Example #1 IntlCalendar.getErrorMessage(3) <?php $cal = IntlCalendar::createInstance('UTC', 'en_US'); var_dump($cal->getErrorMessage()); $cal->getWeekendTransition(IntlCalendar::DOW_WEDNESDAY); var_dump($cal->getErrorMessage()); The above example will output: string(12) "U_ZERO_ERROR" string(82) "intlcal_get_weekend_transition: Error calling ICU method: U_ILLEGAL_ARGUMENT_ERROR" PHP Documentation Group INTLCALENDAR.GETERRORMESSAGE(3)
All times are GMT -4. The time now is 10:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy