Sponsored Content
Top Forums Shell Programming and Scripting Generating an xml having information related to files in the directory Post 302372236 by abhinav192 on Tuesday 17th of November 2009 11:35:57 AM
Old 11-17-2009
what does /dev/null means in
"ls -l *.xml 2>/dev/null "

---------- Post updated at 11:35 AM ---------- Previous update was at 11:21 AM ----------

cant we concatenate two different files together
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Generating XML from XSD

Hi all, Am looking for a way to generate XML based on XSDs so that the final XML need not be validated against the XSDs again. Here is the part of the XSD <xsd:element name="first_element"> <xsd:complexType> <xsd:sequence> <xsd:element name="val"/> </xsd:sequence> ... (0 Replies)
Discussion started by: matrixmadhan
0 Replies

2. HP-UX

I am new to HPUX so kindly provide information related to it

Hello Gurus I am new to HPUX so kindly help me by providing information related to HPUX. I would like to know the date when HPUX 11i v3 comes in to market as well as I have H3056S student guide dated May 2005 which I download through some site. Now I want to know its a HPUX 11i v2 or HPUX 11i... (8 Replies)
Discussion started by: amity
8 Replies

3. Shell Programming and Scripting

A script to scan a directory for XML files,

Hi, I am fairly new to unix/linux scripting (about 1 week) and have written a script to scan a directory for xml files, if found call and oracle procedure passing in the file name and then move the file once processed to an archive area. Now everything seems to be working except when there... (3 Replies)
Discussion started by: apacheuk
3 Replies

4. Solaris

what is the use of each login related files present in users home directory

# ls -l total 10 -rw-r--r-- 1 dummy2 other 140 Jun 19 21:37 local.cshrc -rw-r--r-- 1 dummy2 other 136 Jun 19 21:37 local.cshrc~ -rw-r--r-- 1 dummy2 other 157 Jun 19 21:37 local.login -rw-r--r-- 1 dummy2 other 178 Jun 19 21:37 local.profile... (6 Replies)
Discussion started by: chidori
6 Replies

5. Shell Programming and Scripting

Problem with script generating files in directory recursively

I have a script which generates recursively some files in folders for a given root folder. I have checks for permissions and it works for all folders except one(i have 777 permission on it). When i try calling the script in problematic folder(problematic folder being root folder), script works as... (2 Replies)
Discussion started by: bb2
2 Replies

6. Shell Programming and Scripting

Generating XML from a flatfile

Hi all, I am trying to generate an XML file from a flatfile in ksh/bash (could also use perl at a pinch, but out of my depth there!). I have found several good solutions on this very forum for cases where the header line in the file forms the XML tags, however my flatfile is as follows:... (5 Replies)
Discussion started by: ianmrid
5 Replies

7. UNIX for Dummies Questions & Answers

Need help how to create a file (xml) list all files from directory

I have more than 10K songs in two directories on a hard drive. I would like to create a file list all of files name then change to .xml extension to upload to iPhone so I have a Karaoke list on my iPhone. I need your help to create a file by using command in Linux. Files names: 0001 More... (4 Replies)
Discussion started by: ggcc
4 Replies

8. Shell Programming and Scripting

Copying xml files to a chosen directory

I want to determine if there's any xml files exist & if so copy each xml to that directory. Is my code correct for doing that? I can't test my script yet. Somebody please explain it to me please? if ]; then #print "No Status type XML files received from server in $DIRECTORY" else for... (2 Replies)
Discussion started by: emc^24sho
2 Replies

9. Shell Programming and Scripting

Generating xml file from UNIX

i have a unix script which generates the csv file. the data in csv file is dynamic. how can i convert/move the data from csv file to xml. please suggest (1 Reply)
Discussion started by: archana25
1 Replies
PARTX(8)						       System Administration							  PARTX(8)

NAME
       partx - tell the kernel about the presence and numbering of on-disk partitions

SYNOPSIS
       partx [-a|-d|-P|-r|-s|-u] [-t type] [-n M:N] [-] disk
       partx [-a|-d|-P|-r|-s|-u] [-t type] partition [disk]

DESCRIPTION
       Given a device or disk-image, partx tries to parse the partition table and list its contents.  It can also tell the kernel to add or remove
       partitions from its bookkeeping.

       The disk argument is optional when a partition argument is provided.  To force scanning a partition as if it were a whole disk (for example
       to list nested subpartitions), use the argument "-" (hyphen-minus).  For example:

	      partx --show - /dev/sda3

       This will see sda3 as a whole-disk rather than as a partition.

       partx  is  not  an fdisk program - adding and removing partitions does not change the disk, it just tells the kernel about the presence and
       numbering of on-disk partitions.

OPTIONS
       -a, --add
	      Add the specified partitions, or read the disk and add all partitions.

       -b, --bytes
	      Print the SIZE column in bytes rather than in human-readable format.

       -d, --delete
	      Delete the specified partitions or all partitions.

       -g, --noheadings
	      Do not print a header line with --show or --raw.

       -l, --list
	      List the partitions.  Note that all numbers are in 512-byte sectors.  This output format is DEPRECATED in favour of --show.  Do  not
	      use it in newly written scripts.

       -n, --nr M:N
	      Specify  the range of partitions.  For backward compatibility also the format M-N is supported.  The range may contain negative num-
	      bers, for example --nr -1:-1 means the last partition, and --nr -2:-1 means the last two partitions.  Supported range specifications
	      are:

		     M	    Specifies just one partition (e.g. --nr 3).

		     M:     Specifies the lower limit only (e.g. --nr 2:).

		     :N     Specifies the upper limit only (e.g. --nr :4).

		     M:N    Specifies the lower and upper limits (e.g. --nr 2:4).

       -o, --output list
	      Define the output columns to use for --show, --pairs and --raw output.  If no output arrangement is specified, then a default set is
	      used.  Use --help to get list of all supported columns.  This option cannot be combined with the --add, --delete, --update or --list
	      options.

       -P, --pairs
	      List the partitions using the KEY="value" format.

       -r, --raw
	      List the partitions using the raw output format.

       -s, --show
	      List  the partitions.  The output columns can be selected and rearranged with the --output option.  All numbers (except SIZE) are in
	      512-byte sectors.

       -t, --type type
	      Specify the partition table type.

       --list-types
	      List supported partition types and exit.

       -u, --update
	      Update the specified partitions.

       -S, --sector-size size
	      Overwrite default sector size.

       -v, --verbose
	      Verbose mode.

       -V, --version
	      Display version information and exit.

       -h, --help
	      Display help text and exit.

EXAMPLES
       partx --show /dev/sdb3
       partx --show --nr 3 /dev/sdb
       partx --show /dev/sdb3 /dev/sdb
	      All three commands list partition 3 of /dev/sdb.

       partx --show - /dev/sdb3
	      Lists all subpartitions on /dev/sdb3 (the device is used as whole-disk).

       partx -o START -g --nr 5 /dev/sdb
	      Prints the start sector of partition 5 on /dev/sdb without header.

       partx -o SECTORS,SIZE /dev/sda5 /dev/sda
	      Lists the length in sectors and human-readable size of partition 5 on /dev/sda.

       partx --add --nr 3:5 /dev/sdd
	      Adds all available partitions from 3 to 5 (inclusive) on /dev/sdd.

       partx -d --nr :-1 /dev/sdd
	      Removes the last partition on /dev/sdd.

SEE ALSO
       addpart(8), delpart(8), fdisk(8), parted(8), partprobe(8)

AUTHORS
       Davidlohr Bueso <dave@gnu.org>
       Karel Zak <kzak@redhat.com>

       The original version was written by Andries E. Brouwer <aeb@cwi.nl>.

ENVIRONMENT
       LIBBLKID_DEBUG=all
	      enables libblkid debug output.

AVAILABILITY
       The partx command is part of the util-linux package and is available  from  Linux  Kernel  Archive  <https://www.kernel.org/pub/linux/utils
       /util-linux/>.

util-linux							   December 2014							  PARTX(8)
All times are GMT -4. The time now is 01:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy