Sponsored Content
Top Forums Shell Programming and Scripting Fetch the latest filename shell script Post 302965398 by sea on Thursday 28th of January 2016 11:36:59 AM
Old 01-28-2016
You could try:

EDIT: I did misunderstand, fixing now
Fixed, note sure if I got it right, though.

Code:
ls|awk '/MEDD/ {MEDD=$1};/STATE/ {STATE=$1};{print MEDD,STATE}'|tail -1

Hope this helps

Last edited by sea; 01-28-2016 at 12:46 PM.. Reason: misunderstanding
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script to ftp latest file

Hello All, Hope u r doing fine. I'm writing a shell script to ftp the latest file having pericular convention as 'ULTI_15072007043205.txt' on daily basis. Now the date & timing of the file geleration isnt constant, so the file name daily varies as per the date & timing of generation. Can anyone... (7 Replies)
Discussion started by: im_new
7 Replies

2. Shell Programming and Scripting

fetch hostname and instance name using shell script

Hi All, Requirement is to fetch hostname and instance name using shell script from all configuration files on a server R12 on IBM AIX... could anyone please share such an experience encountered before.Is there such a script available in this forum or any other site.. Thanks for your time!... (0 Replies)
Discussion started by: a1_win
0 Replies

3. Shell Programming and Scripting

shell script to find latest date and time of the files

Hi everyone, Please help:) I have a list of 1000 different files which comes daily to the directory.Some of the files are not coming to the directory now. I need to write a shell script to find the latest date and time of the files they came to the directory. The files should be unique.... (1 Reply)
Discussion started by: karthicss
1 Replies

4. UNIX for Dummies Questions & Answers

get the latest file by reading the date in the filename.

Hi, I grep for a pattern in a list of files. "grep -i -l $pattern *.datx*" it may give me n number of files. say for eg, it gives me 2 files. lock_eicu_20071228_00000000.dat_20071228_05343100 lock_eicu_20080501_00000000.dat_20080501_05343900 out of these 2 files I need to get the... (7 Replies)
Discussion started by: prsshini
7 Replies

5. Shell Programming and Scripting

How to fetch data from oracle in unix shell script

Hi, How to fetch data from oracle database in unix shell scripting. list=`sqlplus -s ds_user/dsuser@EMI <<EOF set feedback off set serveroutput on set heading off set pagesize 0 set tab off select IP_ID from table / exit EOF` The output is not what i expected.I need output in... (4 Replies)
Discussion started by: Anusha_Reddy
4 Replies

6. Shell Programming and Scripting

Get latest filename without extension

I need to write a shell script to display the output of ls command like this ls -ltr *txt I get this -rw-r----- 1 oracle dba 51912704 Dec 11 10:27 /usr/local/sam/test12112012101247AM.txt -rw-r--r-- 1 oracle dba 7 Dec 11 11:58 /usr/local/sam/test.txt but I just need the latest... (7 Replies)
Discussion started by: sumang24
7 Replies

7. Shell Programming and Scripting

Find the latest file based on the date in the filename

Hi, We've a list of files that gets created on a weekly basis and it has got a date and time embedded to it. Below are the examples. I want to find out how to get the latest files get the date and time stamp out of it. Files are PQR123.PLL.M989898.201308012254.gpg... (1 Reply)
Discussion started by: rudoraj
1 Replies

8. Shell Programming and Scripting

How can I fetch few parameters in Shell script?

Hi All, I want to fetch few details out of a huge output of AWS CLI tools : I am using this command : ec2-describe-instances (6 Replies)
Discussion started by: Palak Sharma
6 Replies

9. Shell Programming and Scripting

How to Fetch latest version form a file?

Hi, I have a file where versions will be updated, i need to get latest/last updated version from that file. Could you please help? File looks like below - <versions> <version>R20180417.006</version> <version>R20180421.007</version> <version>R20180421.008</version> ... (5 Replies)
Discussion started by: schandra128
5 Replies

10. UNIX for Beginners Questions & Answers

Shell script to fetch values in csv

I need to fetch below values from this file. (1 Reply)
Discussion started by: nit42
1 Replies
LaTeXML::State(3pm)					User Contributed Perl Documentation				       LaTeXML::State(3pm)

NAME
"LaTeXML::State" - stores the current state of processing. DESCRIPTION
A "LaTeXML::State" object stores the current state of processing. It recording catcodes, variables values, definitions and so forth, as well as mimicing TeX's scoping rules. Access to State and Processing "$STATE->getStomach;" Returns the current Stomach used for digestion. "$STATE->getModel;" Returns the current Model representing the document model. Scoping The assignment methods, described below, generally take a $scope argument, which determines how the assignment is made. The allowed values and thier implications are: global : global assignment. local : local assignment, within the current grouping. undef : global if global preceded, else local (default) <name> : stores the assignment in a `scope' which can be loaded later. If no scoping is specified, then the assignment will be global if a preceding "global" has set the global flag, otherwise the value will be assigned within the current grouping. "$STATE->pushFrame;" Starts a new level of grouping. Note that this is lower level than "group"; See LaTeXML::Stomach. "$STATE->popFrame;" Ends the current level of grouping. Note that this is lower level than "egroup"; See LaTeXML::Stomach. "$STATE->setPrefix($prefix);" Sets a prefix (eg. "global" for "global", etc) for the next operation, if applicable. "$STATE->clearPrefixes;" Clears any prefixes. Values "$value = $STATE->lookupValue($name);" Lookup the current value associated with the the string $name. "$STATE->assignValue($name,$value,$scope);" Assign $value to be associated with the the string $name, according to the given scoping rule. Values are also used to specify most configuration parameters (which can therefor also be scoped). The recognized configuration parameters are: VERBOSITY : the level of verbosity for debugging output, with 0 being default. STRICT : whether errors (eg. undefined macros) are fatal. INCLUDE_COMMENTS : whether to preserve comments in the source, and to add occasional line number comments. (Default true). PRESERVE_NEWLINES : whether newlines in the source should be preserved (not 100% TeX-like). By default this is true. SEARCHPATHS : a list of directories to search for sources, implementations, etc. "$STATE->pushValue($name,$value);" This is like "->assign", but pushes a value onto the end of the stored value, which should be a LIST reference. Scoping is not handled here (yet?), it simply pushes the value onto the last binding of $name. "$boole = $STATE->isValuebound($type,$name,$frame);" Returns whether the value $name is bound. If $frame is given, check whether it is bound in the $frame-th frame, with 0 being the top frame. Category Codes "$value = $STATE->lookupCatcode($char);" Lookup the current catcode associated with the the character $char. "$STATE->assignCatcode($char,$catcode,$scope);" Set $char to have the given $catcode, with the assignment made according to the given scoping rule. This method is also used to specify whether a given character is active in math mode, by using "math:$char" for the character, and using a value of 1 to specify that it is active. Definitions "$defn = $STATE->lookupMeaning($token);" Get the "meaning" currently associated with $token, either the definition (if it is a control sequence or active character) or the token itself if it shouldn't be executable. (See LaTeXML::Definition) "$STATE->assignMeaning($token,$defn,$scope);" Set the definition associated with $token to $defn. If $globally is true, it makes this the global definition rather than bound within the current group. (See LaTeXML::Definition, and LaTeXML::Package) "$STATE->installDefinition($definition, $scope);" Install the definition into the current stack frame under its normal control sequence. Named Scopes Named scopes can be used to set variables or redefine control sequences within a scope other than the standard TeX grouping. For example, the LaTeX implementation will automatically activate any definitions that were defined with a named scope of, say "section:4", during the portion of the document that has the section counter equal to 4. Similarly, a scope named "label:foo" will be activated in portions of the document where "label{foo}" is in effect. "$STATE->activateScope($scope);" Installs any definitions that were associated with the named $scope. Note that these are placed in the current grouping frame and will disappear when that grouping ends. "$STATE->deactivateScope($scope);" Removes any definitions that were associated with the named $scope. Normally not needed, since a scopes definitions are locally bound anyway. "$sp = $STATE->convertUnit($unit);" Converts a TeX unit of the form '10em' (or whatever TeX unit) into scaled points. (Defined here since in principle it could track the size of ems and so forth (but currently doesn't)) AUTHOR
Bruce Miller <bruce.miller@nist.gov> COPYRIGHT
Public domain software, produced as part of work done by the United States Government & not subject to copyright in the US. perl v5.10.1 2009-06-11 LaTeXML::State(3pm)
All times are GMT -4. The time now is 05:29 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy