Sponsored Content
Top Forums UNIX for Beginners Questions & Answers How to sort file with certain criteria (bash)? Post 303035310 by RudiC on Monday 20th of May 2019 05:10:34 PM
Old 05-20-2019
How about
Code:
ls -1 /tmp/test/*CH*NDMP*.z; ls  /tmp/test/*EX*NDMP*.z | sort -t- -k1,3 -k6r
/tmp/test/CARS-GOLD-NET_CHROMJOB-01-XZ-ARCHIVE-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-01-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-02-XZ-ARCHIVE-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-02-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-03-XZ-ARCHIVE-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-03-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-04-XZ-ARCHIVE-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-04-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-05-XZ-ARCHIVE-NDMP.z
/tmp/test/CARS-GOLD-NET_CHROMJOB-05-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_EXPOSITION-01-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_EXPOSITION-02-XZ-NDMP.z
/tmp/test/CARS-GOLD-NET_EXPOSITION-02-XZ-NDMP-4of4.z
/tmp/test/CARS-GOLD-NET_EXPOSITION-02-XZ-NDMP-3of4.z
/tmp/test/CARS-GOLD-NET_EXPOSITION-02-XZ-NDMP-2of4.z
/tmp/test/CARS-GOLD-NET_EXPOSITION-02-XZ-NDMP-1of4.z

This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Selecting records from file on criteria.

Can I have 2 files as in input to the awk command? Situation is somewhat below, File A contains number & value delimited by a space. File B contains number as a part of a line. I am not supposed to retrieve more than 1 number from a line. If number from file B matches with number from... (7 Replies)
Discussion started by: videsh77
7 Replies

2. Shell Programming and Scripting

making a list matching certain criteria in bash...

Hello everyone!I am trying to make a mail list(a simple .txt file)in which i put certain records that match specific criteria. Let's say that i have a(sorted by last column file)like this one: 0100567 Bla1 Lala1 100 1234567 Bla2 Lala2 80 8769029 Bla3 Lala3 70 1001007 ... (0 Replies)
Discussion started by: bashuser2
0 Replies

3. Shell Programming and Scripting

bash script to sort a txt file

I am writing a script to write to and a sort txt file. After I sort the file I want to add 2 to each line of the file. My script thus far is #!/bin/bash cat > /ramdisk/home/stux/unsortedints.out COUNT=0 FILE =/ramdisk/home/stux/unsortedints.out for i in {1..100} do NUMBER = $ echo $NUMBER... (3 Replies)
Discussion started by: puttyirc
3 Replies

4. Shell Programming and Scripting

How do a distinct from a file using sort uniq in bash?

I have an output file .dat. From this file i have to do a distinct of the ID using the sort uniq command in bash script. How can i do it? i found : sort -u ${FILEOUT_DAT} but i don't think is my solution because the id isn't specified.. is there other solution? (7 Replies)
Discussion started by: punticci
7 Replies

5. Shell Programming and Scripting

Input file is uncolored; I want the output file to be colored on criteria

Hello, I have the following input file: auditing account: 3DTP (3dtp) ERROR: S3 bucket "aws-origin-test1.3dstage.com" has policy statement with public grant: {"Sid":"PublicReadGetObject","Effect":"Allow","Principal":{"AWS":"*"},"Action":,"Resource":} auditing region: eu-west-1 auditing... (5 Replies)
Discussion started by: ramky79
5 Replies

6. Shell Programming and Scripting

Finding the right file with multiple sort criteria

Hello, I have files in a directory with names like, ./f0/84.40_E1200_85.39_E1300_f0_r00_1300-ON-0.25_S7A_v4_47.19.1.out.txt ./f0/84.40_E1200_85.83_E1200_f0_r00_1200-ON-0.25_S7A_v4_47.19.1.out.txt ./f0/84.60_E1100_86.45_E1100_f0_r00_1100-ON-0.25_S7A_v4_47.19.1.out.txt... (5 Replies)
Discussion started by: LMHmedchem
5 Replies

7. Shell Programming and Scripting

Bash Retrieve Beginning of file name and sort question

I am trying to look through a directory where the file names are like this: stringnumber_string, and I want to see if I can take the first part of the name and sort it by the number. I tried this: for i in *_; do if; then fileNum=${i%_*}; echo $fileNum fi done but it gives me an error.... (13 Replies)
Discussion started by: totoro125
13 Replies

8. Shell Programming and Scripting

Match based on criteria to file

Trying to match $1 of target.txt to $5 of file.txt. If there is a match then in an output.txt file $1,$1 (row underneath),$6,$4,$7 from file.txt are printed on the same line as $1 of target.txt. The input is from excel and the output should be tab-deliminated. Thank you :). target.txt... (2 Replies)
Discussion started by: cmccabe
2 Replies

9. UNIX for Beginners Questions & Answers

Remove lines from File.A based on criteria in File.B

Hello, I have two files of the following form. I would like to remove from File.A where the first three colum matches values in File.B to give the output in File.C File.A 121 54321 PQR CAT 122 765431 ABC DOG 124 98765 ZXY TIGER 125 86432 GEF LION File.B 122 765431 ABC 125 86432 GEF... (4 Replies)
Discussion started by: Gussifinknottle
4 Replies

10. UNIX for Beginners Questions & Answers

Insert content from file 1 to file 2 in specific criteria meet

Hi , I'm looking for some code that can copy and paste form file1 to file2 with 2 criterial meet. file1: test "sp-j1" test "sp-j2" test "sp-j3" test "sp-j4" file2: sub Pre_Shorts1 (Status_Code, Message$) global Status !if Message$ <> "" then print... (3 Replies)
Discussion started by: kttan
3 Replies
ndmpadm(1M)						  System Administration Commands					       ndmpadm(1M)

NAME
ndmpadm - administer Network Data Management Protocol activities SYNOPSIS
/usr/sbin/ndmpadm [-? ] subcommand [options] [direct-object] DESCRIPTION
The ndmpadm command can be used to query the ndmpd(1M) daemon to get the status of active sessions, terminate a session, query backup devices, and set or get the current NDMP (Network Data Management Protocol) service variables and properties. ndmpadm is implemented as a set of subcommands, many with their own direct object, which are described in the section for a given subcommand. Certain subcommands sup- port options, which are described along with the subcommand. The ndmpadm command supports the following subcommands: get Get the value of an NDMP configuration property. kill-sessions Terminate an active session. set Set the value of an NDMP configuration property. show-devices Get a list of tape devices connected to the server. show-sessions Display the details of active NDMP sessions. OPTIONS
The following option is supported: -? Display a list of all subcommands and options. SUB-COMMANDS The ndmpadm command supports the subcommands described below. get Subcommand The syntax for the get subcommand is: # ndmpadm get [-p] [property] [[-p] property=value]... The property names are the same as used for the set subcommand and are described below. If you do not specify a property, the get subcom- mand returns all configuration properties. kill-sessions Subcommand The kill-sessions subcommand allows you to terminate the session number ID. The syntax for the kill-sessions subcommand is: # ndmpadm kill-sessions ID set Subcommand The syntax for the set subcommand is: # ndmpadm set [-p] property=value [[-p] property=value]... The properties you can set with the set subcommand are as follows: backup-quarantine Backup the files marked as quarantined by AV. Acceptable values are yes or no. The default is no. dar-support Set the Direct Access Recovery mode. Acceptable values are yes or no. The default is no. debug-level Set the debug level. The debug-level can be set to either 0 (off) or 1 (on). The default is 0. debug-path The path to which to save the debug log. The default is /var/ndmp. dump-pathnode Enable or disable backing up the directories containing modified files or directories indump(1) backup format. Acceptable values are yes or no. The default is no. ignore-ctime Determines whether the change timestamp (ctime) of files and directories is used to determine whether a file should be backed up in level backup. If this parameter is set to yes, only the modification time (mtime) of the file or directory determines whether it should be backed up. Acceptable values are yes or no. The default value is no. overwrite-quarantine Restore quarantined files on top of current files if they already exist. Acceptable values are yes or no. The default value is no. restore-quarantine Restore the files that had been marked as quarantined by AV and are backed up. Acceptable values are yes or no. The default value is no. tar-pathnode Enable or disable backing up the directories containing modified files or directories in tar(1) backup format. Acceptable values are yes or no. The default value is no. token-maxseq Set the maximum sequence number for subsequent token-based incremental backup in NDMP-V4. The default value is 9. There are two limits for this value: soft-limit, which is 59, and hard-limit, equal to 64. If the token sequence number, passed by the DMA, is between the soft and hard limits, a warning message is issued to the DMA. The token sequence number can never exceed the hard-limit value. version Set the maximum active NDMP protocol version. Valid values are currently 2, 3, and 4. The default is 4. show-devices Subcommand The syntax for the show-devices subcommand is: # ndmpadm show-devices This subcommand lists the name, vendor, serial number, and other information about the current tape drive and libraries connected to the system. show-sessions Subcommand The show-sessions subcommand displays details of a session. The syntax for the show-sessions subcommand is: # ndmpadm show-sessions [-i tape,scsi,data,mover] [ID] The show-sessions subcommand supports the following arguments: -i tape,scsi,data,mover Identify a type of interface about which to obtain data. If no interface is specified, show-sessions displays information for all types of interfaces. ID Identifies a particular session about which to display data. If no ID is specified, show-sessions displays data for all sessions. EXAMPLES
Example 1 Obtaining the Status of All NDMP Connections The following command obtains status on all connections. # ndmpadm show-devices Example 2 Obtaining the Status of Certain Types of Connections The following command obtains status on tape and SCSI interfaces. # ndmpadm show-sessions -i scsi,tape Example 3 Limiting Protocol Version The following command limits the use of the NDMP protocol to version 3. # ndmpadm set -p version=3 Example 4 Turning on Debugging The following command enables debugging. It also sets the NDMP protocol to version 3. # ndmpadm set -p debug-level=1 -p version=3 Example 5 Obtaining Current Version Number The following command obtains the version number of the currently running NDMP. # ndmpadm get -p version Example 6 Disconnecting a Specific Session The command shown below disconnects session 5. The session number was previously obtained from an ndmpadm show-sessions command. # ndmpadm kill-session 5 Example 7 Obtaining the Values for All NDMP Properties The following command obtains the values for all NDMP properties. # ndmpadm get EXIT STATUS
0 Successful completion. 1 An error occurred, such as the ndmpd daemon is not running, that prevented ndmpadm from contacting the demon. 2 Invalid command-line options were specified. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWndmpu, SUNWndmpr | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ SEE ALSO
dump(1), tar(1), ndmpd(1M), ndmpstat(1M), svccfg(1M), syslogd(1M), attributes(5), smf(5) NOTES
The ndmpd(1M) daemon is managed by the service management facility (smf(5)), under the service identifier: svc:/system/ndmpd Administrative actions on this service, such as setting and getting a property can be alternatively performed using svccfg(1M). For example to enable Direct Access Recovery (DAR) mode: # svccfg -s svc:/system/ndmpd svc:/system/ndmpd> setprop ndmpd/dar-support = yes ...and to get the list of properties: # svccfg -s svc:/system/ndmpd svc:/system/ndmpd> listprop SunOS 5.11 30 Jul 2007 ndmpadm(1M)
All times are GMT -4. The time now is 02:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy