Sponsored Content
Full Discussion: Hour display format
Top Forums UNIX for Beginners Questions & Answers Hour display format Post 302977065 by Don Cragun on Tuesday 12th of July 2016 02:37:31 AM
Old 07-12-2016
Quote:
Originally Posted by stomp
Like this?

Code:
FILENAME_WANTED="HourlyDate_$(date +'%Y%m%d_%H%M').txt"

... ... ...
Hi stomp,
Given that V1l1h1 wants the hour followed by 00 instead of followed by the current minutes value, we'd need to replace the %M in the date format argument with 00. And, it is also possible to put the entire string formatting in the date format. Some people find it easier to read this way although the results are the same:
Code:
FILENAME_WANTED=$(date +'HourlyDate_%Y%m%d_%H00.txt')

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

display the files in a folder which are older than 1 hour

Hi, I have some files in a folder with different time stamps and I want to display the files which are older than 1 hour. i tried with find. need urgent help. (3 Replies)
Discussion started by: vgs
3 Replies

2. Shell Programming and Scripting

display the files in a folder which are older than 1 hour

Hi, I have some files in a folder with different time stamps and I want to display the files which are older than 1 hour. i tried with find. need urgent help. (7 Replies)
Discussion started by: vgs
7 Replies

3. Shell Programming and Scripting

ls command format display

Hi I have 3 files $ ls -l -rw-r--r-- 1 osbadmin osbadmin 427701 Apr 22 12:06 SANITY_TEST -rw-r--r-- 1 osbadmin osbadmin 427701 Apr 22 12:06 Success 123333 -rw-r--r-- 1 osbadmin osbadmin 427701 Apr 22 12:06 Success 123333 (1) I need to see this "SANITY_TEST" "Success 123333" "Success... (6 Replies)
Discussion started by: mnmonu
6 Replies

4. UNIX for Advanced & Expert Users

ls -l timestamp display format

The time stamp format using "ls -l" is either mmm dd hh:mm or mmm dd yyyy. For later case, how can I know the hh:mm as well. Thanks. (3 Replies)
Discussion started by: pok.fung
3 Replies

5. UNIX for Dummies Questions & Answers

Date Display Format

Hello People, How can I display the date in a continuous format along with the time as below : 20091001_154547 i.e yyyymmdd_hhmmss format. Thanks. (3 Replies)
Discussion started by: sushant172
3 Replies

6. UNIX for Dummies Questions & Answers

Date format Display Help

I have tried various arguments to get the date display as "Mar 10". I have tried date +"%c" -------> Wed Mar 10 11:51:21 EST 2010 date +"%b%d%Y_%H%M%S" --------> Mar102010_115121 date +"%b%d" -------> Mar10 date +"%t%b%e" ... (3 Replies)
Discussion started by: moveaix
3 Replies

7. UNIX for Dummies Questions & Answers

How do i set time in 24 hour format?

Currently whenever i run date command output is shown like Mon Apr 12 05:17:21 IST 2010 When its 17:17 Here. How would i change it so that it should show. Mon Apr 12 17:17:21 IST 2010 (8 Replies)
Discussion started by: pinga123
8 Replies

8. Shell Programming and Scripting

Changing display format

Hi, My file cat a.txt Sat Nov 27 00:02:00 2010 00:02:00 Usr 27: Login by edi on batch. (452) 00:02:09 Usr 27: Logout by on batch. (453) 00:02:09 Usr 27: Login by edi on batch. (452) 00:02:22 Usr 27: Logout by on batch. (453) 00:02:22 Usr 27: Login by edi on batch.... (3 Replies)
Discussion started by: ganeshanbu
3 Replies

9. Shell Programming and Scripting

How to convert 24 hour time to 12 hour timing?

Hi friends, I want to convert 24 hour timing to 12 hour please help me... my data file looks like this.. 13-Nov-2011 13:27:36 15.32044 72.68502 13-Nov-2011 12:08:31 15.31291 72.69807 16-Nov-2011 01:16:54 15.30844 72.74028 15-Nov-2011 20:09:25 15.35096 ... (13 Replies)
Discussion started by: nex_asp
13 Replies

10. Shell Programming and Scripting

Hange display format

I have a file , the file content will be modified regularly , its structure as below, the lines are begins with "A" and "B" . #vi file1 this is testing file A aaaaa B bbbbb A ccccc B ddddd A eeeee B fffff A ggggg B hhhhh I would like to have a script to use the... (3 Replies)
Discussion started by: ust3
3 Replies
GSTAT(8)						    BSD System Manager's Manual 						  GSTAT(8)

NAME
gstat -- print statistics about GEOM disks SYNOPSIS
gstat [-abcdop] [-f filter] [-I interval] DESCRIPTION
The gstat utility can be used to monitor I/O transactions of geom(4) devices. The options are as follows: -a Only display providers that are at least 0.1% busy. -b Batch mode. Collect numbers, print and exit. Default if stdout is not a tty. -c Enable display of geom(4) consumers too. The default is to show statistics only for geom(4) producers. -d Enable display of statistics for delete (BIO_DELETE) operations. -f filter A regular expression that can be used to only show statistics for some devices. Only devices with the names matching filter will be displayed. The format of the regular expression is described in re_format(7). -o Enable display of statistics for other operations (BIO_FLUSH). -I interval Refresh the gstat display every interval microseconds. Adding a suffix of s, ms, or us (the default) indicates that the update interval is specified in seconds, milliseconds, or microseconds, respectively. -p Only display physical providers (those with rank of 1). EXIT STATUS
The gstat utility exits 0 on success, and >0 if an error occurs. SEE ALSO
systat(1), geom(4), iostat(8), vmstat(8) HISTORY
A gstat utility appeared in FreeBSD 5.0. BSD
July 3, 2014 BSD
All times are GMT -4. The time now is 09:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy