Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Get date, change format and substring? Post 302820833 by RudiC on Thursday 13th of June 2013 01:59:56 PM
Old 06-13-2013
Is the date the only contents of the file or is it embedded within other data?
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Change date format

I know the command date +"%Y%m%d" can change today's date to digit format as below . $date +"%Y%m%d" 20071217 it works fine . now I want to do it back . If I have a file like below, (in the file , there are three lines, and each line have ; sign , after the ; sign is the date ) , I... (4 Replies)
Discussion started by: ust
4 Replies

2. Shell Programming and Scripting

Change of date format

I want to chnage the date format from the file format like below to WT;T15D;0000007208;;20080401;3;0;0;3;;B;ZZZZZZ; WT;T25D;0000007208;;20080401;6;0;0;6;;B;ZZZZZZ; WT;T5D;0000007208;;20080401;123;0;0;123;;B;ZZZZZZ; to WT;T15D;0000007208;;04/01/200804;3;0;0;3;;B;ZZZZZZ;... (2 Replies)
Discussion started by: svenkatareddy
2 Replies

3. Shell Programming and Scripting

How to Change the Format of a Date

Hi All, this is my second post, last post reply was very helpful. I have a data that has date in DD/MM/YYYY (07/11/2008) format i want to replace the backslash by a dot(.) so that my awk script can read it inside the C shell script that i have written. i want to change 07/11/2008 to... (3 Replies)
Discussion started by: asirohi
3 Replies

4. Solaris

change date format

dear members, ls -l drwxr-xr-x 40 root sys 1024 Jul 11 22:19 usr drwxr-xr-x 43 root sys 1024 Feb 1 2009 var i am using solaris 10 is that possibe to do drwxr-xr-x 40 root sys 1024 25-08-2009 22:19 usr drwxr-xr-x 43 root sys ... (4 Replies)
Discussion started by: hosney00ux
4 Replies

5. Shell Programming and Scripting

Change date format

Hi guys, I have a text file with lots of lines like this: MCOGT23R27815 27/07/07 27/05/09 SO733AM0235 30/11/07 30/11/10 NL123403N 04/03/08 04/03/11 0747AM7474 04/04/08 04/04/11 I want to change each line so the date format looks like this: MCOGT23R27815 07/07/27 09/05/27 ... (7 Replies)
Discussion started by: Tornado
7 Replies

6. Shell Programming and Scripting

Date Format Change

Hi, Please can I have some command to get yesterday in YYMMDD format? This will be used in ksh Thanks, (2 Replies)
Discussion started by: smalya
2 Replies

7. Shell Programming and Scripting

Date format change

Dear Friends, Need your help once again, I have a variable ( e.g. ${i}) whoch has date in MM/DD/YYYY (E.g. 12/31/2011) format. I want to change it to DD/MM/YYYY (e.g. 31/12/2011) format. Request you to guide me as we are unable to do the same. Thanks in advance Anu. (1 Reply)
Discussion started by: anushree.a
1 Replies

8. Shell Programming and Scripting

Change the date format

Hi all, I have a file that every line starts with the date and time. The format is like YYYYMMDDHHMM and I woulk like to change it to MM/DD/YY<space>HH:MM. I tried to figure out a way to do it with sed, but I don't know how I could reorganize the digits of the first format. Does anyone have any... (1 Reply)
Discussion started by: geovas
1 Replies

9. Shell Programming and Scripting

Change the date format

Hi, I was looking for a script to change the date from one format to other. A search in the forum gave me the below script as a result. #! /bin/ksh format=YYYYMMDD YEAR=${format%????} DAY=${format#??????} MON=${format#$YEAR} MON=${MON%$DAY} echo $MON/$DAY/$YEAR I got it... (2 Replies)
Discussion started by: prithvirao17
2 Replies

10. UNIX for Dummies Questions & Answers

Change Date from one format to other

Hi I wish to change date from one format to another in unix. eg: INPUT DATE: 2013159 (YEAR & NUMBER OF DAY) OUTPUT DATE required: 20130608 (YYYYMMDD) how to do it ? Thanks in advance. (6 Replies)
Discussion started by: dashing201
6 Replies
Mono(Mono 1.1.x)														  Mono(Mono 1.1.x)

NAME
monodis - CIL image content dumper and disassembler. SYNOPSIS
monodis [-h] [--help] [--output=FILENAME] [--mscorlib] [--assembly] [--assemblyref] [--classlayout] [--constant] [--customattr] [--declsec] [--event] [--exported] [--fields] [--file] [--forward-decls] [--genericpar] [--implmap] [--interface] [--manifest] [--marshal] [--member- ref] [--method] [--methodimpl] [--methodsem] [--methodspec] [--module] [--moduleref] [--mresources] [--presources] [--nested] [--param] [--parconst] [--property] [--propertymap] [--standalonesig] [--typedef] [--typeref] [--typespec] [--blob] [--strings] [--userstrings] [FILES...] DESCRIPTION
The monodis program is used to dump the contents an ECMA/ISO CIL image (contained in .EXE files that contain extended PE/COFF CIL code). To roundtrip assemblies using ilasm, it is best to use the --output argument, as that will make monodis save the embedded resources in files that can later be properly embedded back by ilasm. Additionally, the tool can be used to dump the contents of the various ECMA CIL metadata tables. OPTIONS
The following Generic options are supported: --help , -h Displays usage instructions. --output=FILENAME Write output into FILENAME and dump any embedded managed resources. --mscorlib For non-corlib assemblies, use "mscorlib" as the assembly name. This is useful for round-tripping the IL with ilasm. --show-method-tokens Display tokens for disassembled methods. OPTIONS TO DISPLAY METADATA TABLES
The following options are used to display metadata tables instead of disassembling the CIL image. --assembly Dumps the contents of the Assembly table. --assemblyref Dumps the contents of the AssemblyRef table. --classlayout Dumps the contents of the ClassLayout table. --constant Dumps the contents of the Constant table. --customattr Dumps the contents of the CustomAttribute table. --declsec Dumps the contents of the DeclSec table. --event Dumps the contents of the Event table. --exported Dumps the contents of the ExportedType table. --fields Dumps the contents of the Field table. --file Dumps the contents of the File table. --forward-decls Dumps forward declarations for classes. --genericpar Dumps the contents of the GenericParam table. --implmap Dumps the contents of the ImplMap table. --interface Dumps the contents of the InterfaceImpl table. --manifest Dumps the contents of the ManifestResource table. --marshal Dumps the contents of the FieldMarshal table. --memberref Dumps the contents of the MemberRef table. --method Dumps the contents of the MethodDef table. --methodimpl Dumps the contents of the MethodImpl table. --methodspec Dumps the contents of the MethodSpec table. --methodsem Dumps the contents of the MethodSemantics table. --module Dumps the contents of the Module table. --moduleref Dumps the contents of the ModuleRef table. --mresources Saves all the managed resources embedded in the assembly into the current directory. To get a list of the embedded resources use the --manifest option. --presources Prints offsets and names of manifest resources embedded in the assembly. --nested Dumps the contents of the NestedClass table. --param Dumps the contents of the Param table. --parconst Dumps the contents of the GenericParameterConstraint table. --property Dumps the contents of the Property table. --propertymap Dumps the contents of the PropertyMap table. --standalonesig Dumps the contents of the StandAloneSig table. --typedef Dumps the contents of the TypeDef table. --typespec Dumps the contents of the TypeSpec table. --typeref Dumps the contents of the TypeRef table. --blob Dumps the entire contents of the blob stream as hex. --strings Dumps the contents of the Strings heap. --userstrings Dumps the contents of the User-Strings heap If no flags are specified the program dumps the content of the image in a format that can be used to rountrip the code. ENVIRONMENT VARIABLES
MONO_PATH Provides a search path to mono and mint where to look for library files. Directories are separated by the platform path separator (colons on unix). Example: /home/username/lib:/usr/local/mono/lib AUTHOR
monodis was written by Miguel de Icaza, Paolo Molaro and Dietmar Maurer. SEE ALSO
pedump(1) Mono(Mono 1.1.x)
All times are GMT -4. The time now is 03:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy