Sponsored Content
Full Discussion: Extraction of Filename
Top Forums UNIX for Dummies Questions & Answers Extraction of Filename Post 302412604 by Franklin52 on Tuesday 13th of April 2010 03:35:09 AM
Old 04-13-2010
Quote:
Originally Posted by drco29
HI,

i would like to ask for your help.
how will i be able to extract part of the filename?
FILENAME: 000_20071222083029135_evPDSN02.CANCEL

i want to get only 000_20071222083029135.

Thanks and Good Day! Smilie
Code:
part=${FILENAME%_*}

Regards
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

shortcut for tar cvf - [filename] | gzip > [filename].tar.gz

i'd like to have an alias (or something similar) where i can type a command like "archive" and a filename and have it tar and gzip the file, so... $ archive filename results in filename.tar.gz...do i have to write a script to do this? (4 Replies)
Discussion started by: bcamp1973
4 Replies

2. Shell Programming and Scripting

extraction of last but one char

I need to extract the character before the last "|" in the following lines, which are 'N' and 'U'. The last "|" shouldn't be extracted. Also the no.s of "|" may vary in a line, but I need only the character before the last one. ... (5 Replies)
Discussion started by: hidnana
5 Replies

3. Shell Programming and Scripting

mv Filename variable to another filename

Anyone who can assist : I am trying to pass the group vairiable to a filename: rpt_tsavegrp=/export/legato/scripts/$group_savegrp_rpt.$dat It will not pass to variable. Anyone have any ideas what I am doing wrong here. Thanks # This script sends email that save group completed.... (3 Replies)
Discussion started by: gzs553
3 Replies

4. Shell Programming and Scripting

gzcat into awk and then change FILENAME and process new FILENAME

I am trying to write a script that prompts users for date and time, then process the gzip file into awk. During the ksh part of the script another file is created and needs to be processed with a different set of pattern matches then I need to combine the two in the end. I'm stuck at the part... (6 Replies)
Discussion started by: timj123
6 Replies

5. Shell Programming and Scripting

rename multiple filename.45267.txt to >> filename.txt

i have several thousand files and in subdirs that are named file.46634.txt budget.75346.pdf etc i want to remove the number but retain the extension. it is always a 5 digit. thanks. (6 Replies)
Discussion started by: jason7
6 Replies

6. Shell Programming and Scripting

Filename from splitting files to have the same filename of the original file with counter value

Hi all, I have a list of xml file. I need to split the files to a different files when see the <ko> tag. The list of filename are B20090908.1100-20090908.1200_CDMA=1,NO=2,SITE=3.xml B20090908.1200-20090908.1300_CDMA=1,NO=2,SITE=3.xml B20090908.1300-20090908.1400_CDMA=1,NO=2,SITE=3.xml ... (3 Replies)
Discussion started by: natalie23
3 Replies

7. Shell Programming and Scripting

extraction

I have following input @xxxxxx@ I want to extract what's between @....@ that is : xxxx using SED command (6 Replies)
Discussion started by: xerox
6 Replies

8. Shell Programming and Scripting

difference between sh filename.sh and . filename

Hi, Gurus, I feel sorry to ask this easy question, but to be honest, I really don't know. I have a question about execute shell script. I have script named as filename.sh with -rwxr-xr-x permission. when I execute it with . filename.sh It works properly. when I exec it with sh... (7 Replies)
Discussion started by: ken002
7 Replies

9. UNIX for Dummies Questions & Answers

to extract all the part of the filename before a particular word in the filename

Hi All, Thanks in Advance I am working on a shell script. I need some assistance. My Requirement: 1) There are some set of files in a directory like given below OTP_UFSC_20120530000000_acc.csv OTP_UFSC_20120530000000_faf.csv OTP_UFSC_20120530000000_prom.csv... (0 Replies)
Discussion started by: aealexanderraj
0 Replies

10. Programming

to extract all the part of the filename before a particular word in the filename

Hi All, Thanks in Advance I am working on a shell script. I need some assistance. My code: if then set "subscriber" "promplan" "mapping" "dedicatedaccount" "faflistSub" "faflistAcc" "accumulator"\ "pam_account"; for i in 1 2 3 4 5 6 7 8;... (0 Replies)
Discussion started by: aealexanderraj
0 Replies
UPSSCHED.CONF(5)						    NUT Manual							  UPSSCHED.CONF(5)

NAME
upssched.conf - Configuration for upssched timer program DESCRIPTION
This file controls the operations of upssched(8), the timer-based helper program for upsmon(8). CONFIGURATION DIRECTIVES
CMDSCRIPT scriptname Required. This must be above any AT lines. This script is used to invoke commands when your timers are triggered. It receives a single argument which is the name of the timer that caused it to trigger. PIPEFN filename Required. This sets the file name of the socket which will be used for interprocess communications. This should be in a directory where normal users can't create the file, due to the possibility of symlinking and other evil. Caution if you are running Solaris or similar, the permissions that upssched sets on this file are not enough to keep you safe. If your OS ignores the permissions on a FIFO, then you MUST put this in a protected directory! Note by default, upsmon(8) will run upssched as whatever user you have defined with RUN_AS_USER in upsmon.conf(8). Make sure that user can create files and write to files in the path you use for PIPEFN and LOCKFN. My recommendation: create a special directory for upssched, make it owned by your upsmon user, then use it for both. The stock version of the upssched.conf ships with PIPEFN disabled to make you visit this portion of the documentation and think about how your system works before potentially opening a security hole. LOCKFN filename Required. upssched attempts to create this file in order to avoid a race condition when two events are dispatched from upsmon at nearly the same time. This file will only exist briefly. It must not be created by any other process. You should put this in the same directory as PIPEFN. AT notifytype upsname command Define a handler for a specific event notifytype on UPS upsname. upsname can be the special value * to apply this handler to every UPS. This will perform the command command when the notifytype and upsname match the current activity. Possible values for command are: START-TIMER timername interval Start a timer of interval seconds. When it triggers, it will pass the argument timername as an argument to your CMDSCRIPT. Example: Start a timer that'll execute when any UPS (*) has been gone for 10 seconds AT COMMBAD * START-TIMER upsgone 10 CANCEL-TIMER timername [cmd] Cancel a running timer called timername, if possible. If the timer has passed then pass the optional argument cmd to CMDSCRIPT. Example: If a specific UPS (myups@localhost) comes back online, then stop the timer before it triggers AT COMMOK myups@localhost CANCEL-TIMER upsgone EXECUTE command Immediately pass command as an argument to CMDSCRIPT. Example: If any UPS (*) reverts to utility power, then execute ups-back-on-line via CMDSCRIPT. AT ONLINE * EXECUTE ups-back-on-line Note that any AT that matches both the notifytype and the upsname for the current event will be used. For a complete list of notifytype possible values, refer to the section NOTIFY EVENTS in upsmon(8). SEE ALSO
upssched(8), upsmon(8) Internet resources: The NUT (Network UPS Tools) home page: http://www.networkupstools.org/ Network UPS Tools 05/21/2012 UPSSCHED.CONF(5)
All times are GMT -4. The time now is 04:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy