Sponsored Content
Top Forums Shell Programming and Scripting Echo date variable from data input to a script Post 302478169 by iga3725 on Tuesday 7th of December 2010 09:40:16 AM
Old 12-07-2010
Echo date variable from data input to a script

Hi, I'm trying to make a script which you type the year, select the month and day and then create the date in the format 2010-12-7.
Code:
#!/bin/bash

dia () {
echo " Seleccione el dia:"
select file in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 Salir
do
case $file in
"1") d=1 ; fecha ;;
"2") d=2 ; fecha ;;
"3") d=3 ; fecha ;;
"4") d=4 ; fecha ;;
"5") d=5 ; fecha ;;
"6") d=6 ; fecha ;;
"7") d=7 ; fecha ;;
"8") d=8 ; fecha ;;
"9") d=9 ; fecha ;;
"10") d=10 ; fecha ;;
"11") d=11 ; fecha ;;
"12") d=12 ; fecha ;;
"13") d=13 ; fecha ;;
"14") d=14 ; fecha ;;
"15") d=15 ; fecha ;;
"16") d=16 ; fecha ;;
"17") d=17 ; fecha ;;
"18") d=18 ; fecha ;;
"19") d=19 ; fecha ;;
"20") d=20 ; fecha ;;
"21") d=21 ; fecha ;;
"22") d=22 ; fecha ;;
"23") d=23 ; fecha ;;
"24") d=24 ; fecha ;;
"25") d=25 ; fecha ;;
"26") d=26 ; fecha ;;
"27") d=27 ; fecha ;;
"28") d=28 ; fecha ;;
"29") d=29 ; fecha ;;
"30") d=30 ; fecha ;;
"31") d=31 ; fecha ;;
"Salir") exit 1;;
 *)
    echo "ERROR: Seleccione correctamente... "
    dia;;
esac
done
}

mes () {
echo " Seleccione el mes:"
select file in enero febrero marzo abril mayo junio julio agosto septiembre octubre noviembre diciembre Salir
do
case $file in
"enero") m=1 ; dia ;;
"febrero") m=2 ; dia ;;
"marzo") m=3 ; dia  ;;
"abril") m=4 ; dia  ;;
"mayo") m=5 ; dia  ;;
"junio") m=6 ; dia  ;;
"julio") m=7 ; dia  ;;
"agosto") m=8 ; dia  ;;
"septiembre") m=9 ; dia  ;;
"octubre") m=10 ; dia  ;;
"noviembre") m=11 ; dia  ;;
"diciembre") m=12 ; dia  ;;
"Salir") exit 1;;
 *)
    echo "ERROR: Seleccione correctamente... "
    mes;;
esac
done
}

anno () {
echo " Seleccione la anno, insertando las dos ultimas cifras:"
read yshort

if [[ $( echo $yshort | sed 's/^[-+0-9][0-9]*//' | wc -c ) -ne 1 ]]; then echo "ERROR: Introduzca correctamente dos caracteres numericos." && exit 1; fi

if [[ $( expr length $yshort) -ne 2 ]] ; then echo "ERROR: Introduzca SOLO dos caracteres" && exit 1 ;fi
Y=20$yshort
}

fecha () {
fecha=`echo " $Y-$m-$d"`
echo $fecha
exit 0
}

main () {

anno
mes
dia

}

main

The problem? Simple, I want to select the day regarding the month, I mean, to print 30 days if you selected the month of 30 days and so on.

Any help on how to change my script?
Thanks in advance.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to find files on a given input date

Hello gurus, I need to write a script to find out all the file that got changed on a specific folder since a given input date (Date to be given as Input) Thanx (1 Reply)
Discussion started by: ar.karan
1 Replies

2. Shell Programming and Scripting

Help with Creation of Script to Input Separators in Data

Hi all, I have one problem that is preparing datas so I can run a script to extrat informations for my statistic reports. I receive some datas, that are informations mixed and I need to separate them to analyse. This is an exemple of datas:... (8 Replies)
Discussion started by: Alexis Duarte
8 Replies

3. Shell Programming and Scripting

problem piping input to script with echo

I am trying to have a script run without interaction from the command line. So in my script i have a line like this echo -e "\n\n\ny\ny\n" | ./script the goal being the ability to mimic 3 Enter presses and 2 'y/n' responses with 'y' followed by enter. For some reason tho, it is not... (1 Reply)
Discussion started by: mcdef
1 Replies

4. Shell Programming and Scripting

Need script to take input from file, match on it in file 2 and input data

All, I am trying to figure out a script to run in windows that will allow me to match on First column in file1 to 8th Column in File2 then Insert file1 column2 to file2 column4 then create a new file. File1: 12345 Sam 12346 Bob 12347 Bill File2:... (1 Reply)
Discussion started by: darkoth
1 Replies

5. Shell Programming and Scripting

Script asks to input data

Hi, I have three different files about a warehouse's stock status. Each file shows storage locations, stored product names, quantity of the part and at last column, its price. When there is a change in price, I open those files one by one, search related product name at each row and change... (4 Replies)
Discussion started by: baris35
4 Replies

6. Shell Programming and Scripting

Input date on script

How can I allow users to change the date and time in a script? Say the user1 wil login and he will be inputting the desired date (example format below). I will need this script so the user can login and change the date anytime during the day. I will not allow him to use any command except the date... (2 Replies)
Discussion started by: lhareigh890
2 Replies

7. Shell Programming and Scripting

Script to get previous date for the given input date..

hi all, need a script or command to get the previous date for the given input date... like in my script i will pass date as input parameter like 2014-12-01 and i want the output as previous date.. ie.. 2014-11-30 (2 Replies)
Discussion started by: hemanthsaikumar
2 Replies

8. UNIX for Dummies Questions & Answers

UNIX shells script to echo out the date value

I appreciate if someone answer this question for my learning purpose: Given a filename structure of a COUNTRY CODE, file type, date (YYYYMMDD) and two digit attempt number with an extension of ".dat", write a UNIX shells script to echo out the date value. Example: ... (1 Reply)
Discussion started by: shumail
1 Replies

9. Shell Programming and Scripting

Variable input to awk script

Hi guys, I wrote the following function to compare two csv files column by column. However, sometimes the input needs to be sorted before parsing it to awk. I can do this by changing the awk arguments, but I would like to make this variable if possible. The below doesn't work since the... (3 Replies)
Discussion started by: Subbeh
3 Replies

10. Shell Programming and Scripting

Enhance existing script: Extract Multiple variables & Input in an echo string

Hi Experts I need your help to optimize my script to execute better as I have nearly 1M records & the script is taking close to 40 minutes to execute, so would need support on a faster alternative. Input: file {"house":"1024","zip":"2345","city":"asd","country":"zzv"}... (2 Replies)
Discussion started by: nk1984
2 Replies
DIA(1)								  [FIXME: manual]							    DIA(1)

NAME
dia - a diagram drawing program SYNOPSIS
dia [-c] [--credits] [-e OUTPUT] [--export=OUTPUT] [-L LAYER,LAYER,...] [--show-layers=LAYER,LAYER,...] [-h] [--help] [-n] [--nosplash] [-s WxH] [--size=WxH] [-t FORMAT] [--filter=FORMAT] [-v] [--version] [file ...] DESCRIPTION
Dia is used to create diagrams. Dia has a number of basic tools, like lines and boxes but can also dynamically load sheets. A sheet is a collection of tools that are used in a certain type of diagram. Most diagram objects in Dia have connection points. Lines can be connected to these connection points and this way graph structures can be formed. When objects are moved or resized the connections will follow the objects. Diagrams drawn in Dia can be exported as PostScript. OPTIONS
Dia accepts the following options: -c --credits Display credits list and exit. -e OUTPUT --export=OUTPUT Export loaded file to OUTPUT and exit. -h --help Display a list of all commandline options. -n --nosplash Do not show the splash screen. -s WxH --size=WxH Export loaded file in decimal given width and/or height. It is allowed to only select width or height. E.g. --size=520x exports an image that is 520 pixels wide, while --size=x900 exports an image of 900 pixels height. Note This option is currently only implemented for the PNG export filter. -L LAYER,LAYER,... --show-layers=LAYER,LAYER,... Only include specified layers when exporting. Layers can be specified either as a layer name, the layer number or a numeric range X-Y of layers. --show-layers=background,2-5 shows the layer named background and layers 2-5, --show-layers=2- shows layers 2 and up. -t FORMAT --filter=FORMAT Export loaded file in FORMAT and exit. Format are described below. -v --version Display dia version and exit. EXPORT FORMATS
The following export formats are supported by dia. o cgm (Computer Graphics Metafile, ISO 8632) o dia (Native dia diagram) o dxf (Drawing Interchange File) o eps or eps-builtin or eps-pango (Encapsulated PostScript) The format specifications eps and eps-pango both use the font renderer of the Pango library, while eps-builtin uses a dia specific font renderer. If you have problems with Pango rendering, e.g. Unicode, try eps-builtin instead. o fig (XFig format) o mp (TeX MetaPost macros) o plt or hpgl (HP Graphics Language) o png (Portable Network Graphics) o shape (Dia Shape File) o svg (Scalable Vector Graphics) o pstricks-tex (TeX PSTricks macros) o pgf-tex (TeX PGF/tikz macros) o wpg (WordPerfect Graphics) o wmf (Windows MetaFile) FILES
dia creates a directory .dia in the user's home, which contains different files to store user preferences. To reset dia to it's default behaviour, just remove the respective file: o defaults.dia: contains default values for elements (XML format). o diarc: keeps dia preferences (ASCII). o history: keeps the list of last edited diagrams (ASCII). o menurc: contains an automated accelerator map dump (Lisp). o persistence: contains GUI information, e.g. open windows (XML). o pluginrc: the list of loaded plugins (XML). SEE ALSO
Pango[1] X (1) xfig (1) inkscape (1) COPYRIGHT
Copyright 1999 Alexander Larsson. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. AUTHORS
Alexander Larsson This manual was written by Fredrik Hallenberg. AUTHORS
Fredrik Hallenberg <hallon@lysator.liu.se> Author. W. Borgert <debacle@debian.org> Author. Alan Horkan <horkana@tcd.ie> Author. COPYRIGHT
Copyright (C) 1999, 2004 Fredrik Hallenberg, W. Borgert, Alan Horkan NOTES
1. Pango http://www.pango.org/ [FIXME: source] 2004-11-26 DIA(1)
All times are GMT -4. The time now is 10:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy