Sponsored Content
Top Forums Shell Programming and Scripting awk print not working properly Post 303021107 by vgersh99 on Saturday 4th of August 2018 09:42:29 AM
Old 08-04-2018
Code:
echo '
system_schema  system_auth  system  abc system_distributed  system_traces' | tr ' ' '\n' | sed '/^$/d'

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Keyboard not working properly...

Hello Again, Those that have noticed my earlier posts will know that I have succesfully installed Solaris 8 onto my pc. I haven't been able to get x-server working (i think it doesn't like my video card) though I've been able to log into root (with a bit of help from unix forums :o ) and have... (2 Replies)
Discussion started by: timresh
2 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. UNIX for Dummies Questions & Answers

Telnet is not working properly

telnet at my system is behaving stange. Some times I am able to telnet to other machines but sometimes it stop doing that. Then i have to reboot the machine and most of the time (not 100%) it works. SImilar is the case with SSH. Sometime it works , some time it don't. i am new to Unix and I do not... (1 Reply)
Discussion started by: deepak_pathania
1 Replies

4. HP-UX

Cron - Not working properly

Hi, I do have three scripts. Whcih inserts records into a table using sqlldr, creating some reprot files etc. The first script will call the second and then the second will call the third. When I run my first script from the shell prompt, all my operation are completed successfully. If I do... (23 Replies)
Discussion started by: risshanth
23 Replies

5. HP-UX

FC card not working properly

Hi I've a problem with Hp-ux 11.11 9000/800/rp3440 system. Already the software for driver & its patch are loaded for HBA Fibrechannel card, but still the fibrechannel card is showing the status "Unclaimed" . What will be reason for this? How to get the status "Claimed" ? Pl. help me out.... (4 Replies)
Discussion started by: Mike1234
4 Replies

6. 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

7. UNIX for Dummies Questions & Answers

PC awk not working properly on OSX

Hi, I'm having some trouble with an awk programme that i'm using to scan ascii files. Unfortunately I'm not an experienced programmer but I think I am experiencing problems for a two reasons: 1) the awk was written by a PC programmer and it works on his machine, but only partly works... (10 Replies)
Discussion started by: Dan Browne
10 Replies

8. Shell Programming and Scripting

mailx not working properly

I am using mailx command in my script to attach a file and send an email. I need to attach a csv file and send email to a mail id - I am using uuencode output.csv output.csv | mailx -s "test mail" xyz@abc.com This will send a mail with scrambled text in body. am i missing something ?... (4 Replies)
Discussion started by: Sriranga
4 Replies

9. Red Hat

sudo is not working properly

This is the first time for using sudo for me. # visudo ## Allows people in group admin to run all commands %admin ALL=(ALL) ALL # groupadd admin # useradd temp # usermod -a -G admin temp # id temp uid=506(temp) gid=506(temp) groups=506(temp),507(admin) # #sudo... (5 Replies)
Discussion started by: getrue
5 Replies

10. Shell Programming and Scripting

Expansion not working properly

I'm using an Ubuntu machine and expansion is not working properly. What would cause this? Do I need to check for any particular bash packages? $ ipcs -m | grep $USER | awk '{printf "%s ",$2}' $ ipcs -m | grep UNF | awk '{printf "%s ",$2}' 294912 1048577 425986 688131 786436 1245189... (14 Replies)
Discussion started by: cokedude
14 Replies
PG_TAPGEN(1p)						User Contributed Perl Documentation					     PG_TAPGEN(1p)

Name
       pg_tapgen - Generate schema TAP tests from an existing database

Usage
	 pg_tapgen -d template1 > schema_test.sql

Description
       "pg_tapgen" is a command-line utility to generate pgTAP tests to validate a database schema by reading an existing database and generating
       the tests to match. Its use requires the installation of the DBI and DBD::Pg from CPAN or via a package distribution.

       Warning: These prerequisites are not validated by the pgTAP "Makefile", so you'll need to install them yourself. As a result, inclusion of
       this script in the pgTAP distribution is experimental. It may be moved to its own distribution in the future.

Options
	 -d --dbname DBNAME	   Database to which to connect.
	 -U --username USERNAME    Username with which to connect.
	 -h --host HOST 	   Host to which to connect.
	 -p --port PORT 	   Port to which to connect.
	 -v --verbose		   Display output of test scripts while running them.
	 -N --exclude-schema	   Exclude a schema from the generated tests.
	 -H --help		   Print a usage statement and exit.
	 -m --man		   Print the complete documentation and exit.
	 -V --version		   Print the version number and exit.

Options Details
       "-d"
       "--dbname"
	     pg_tapgen --dbname try
	     pg_tapgen -d postgres

	   The name of database to which to connect. Defaults to the value of the $PGDATABASE environment variable or to the system username.

       "-U"
       "--username"
	     pg_tapgen --username foo
	     pg_tapgen -U postgres

	   PostgreSQL user name to connect as. Defaults to the value of the $PGUSER environment variable or to the operating system name of the
	   user running the application.

       "-h"
       "--host"
	     pg_tapgen --host pg.example.com
	     pg_tapgen -h dev.local

	   Specifies the host name of the machine on which the server is running. If the value begins with a slash, it is used as the directory
	   for the Unix-domain socket. Defaults to the value of the $PGHOST environment variable or localhost.

       "-p"
       "--port"
	     pg_tapgen --port 1234
	     pg_tapgen -p 666

	   Specifies the TCP port or the local Unix-domain socket file extension on which the server is listening for connections. Defaults to the
	   value of the $PGPORT environment variable or, if not set, to the port specified at compile time, usually 5432.

       "-v"
       "--verbose"
	     pg_tapgen --verbose
	     pg_tapgen -v

	   Display standard output of test scripts while running them. This behavior can also be triggered by setting the $TEST_VERBOSE
	   environment variable to a true value.

       "-N"
       "--exclude-schema"
	     pg_tapgen --exclude-schema contrib
	     pg_tapgen -N testing -N temporary

	   Exclude a schema from the test generation. "pg_tapgen" always ignores "information_schema", as it is also ignored by pgTAP. But if
	   there are other schemas in the database that you don't need or want to test for in the database (because you run the tests on another
	   database without those schemas, for example), use "--exclude-schema" to omit them. May be used more than once to exclude more than one
	   schema.

       "-H"
       "--help"
	     pg_tapgen --help
	     pg_tapgen -H

	   Outputs a brief description of the options supported by "pg_tapgen" and exits.

       "-m"
       "--man"
	     pg_tapgen --man
	     pg_tapgen -m

	   Outputs this documentation and exits.

       "-V"
       "--version"
	     pg_tapgen --version
	     pg_tapgen -V

	   Outputs the program name and version and exits.

Author
       David E. Wheeler <dwheeler@cpan.org>

Copyright
       Copyright (c) 2009-2011 David E. Wheeler. Some Rights Reserved.

perl v5.14.2							    2012-06-10							     PG_TAPGEN(1p)
All times are GMT -4. The time now is 08:15 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy