I have files that are log.20170321PDT 8 numeric spaces and log.2017032307PDT 10 spaces
the script does a conversion to add seconds to the time stamp to keep them unique
when zipping but for some reason sed adds the extension below
I'm at a loss on where the .2. is being genrated by sed
any...
Basically, I want filenames to be of the POSIX "Fully portable filenames" standard,
which lists these: A–Z a–z 0–9 . _ - as acceptable in filenames everything else should be invalid.
Hello Feherke,
I want to be able to evaluate the FILENAME and if it see's anything in any position
other than the "-", ".", number 0-9, or alph A-Z, to mark the filename as invalid.
I thought the syntax for my regex would work but i get mixed returns
I also tried ecsaping the "-"
if [[...
I found the problem it was actually another line of code that was causing the variable to not populate.
I'll def use tags going forward to make it easier to read.
Thanks for replying SamBone!
I am trying to move files that have invalid characters out
of a directoy but the regex i am using is still copying
the good files that i want to keep in the log_dir
files can be like this
bill-0001.log
BILL-0120-.log
Bill-A-1234-Nov.log
The problem is those files are still being moved
can...
Hello,
I have a script written in korn shell that I am having trouble
to read my variables into an http line that. I've tried placing "\"
in from of the variables but when the script runs it doesn't add
whats being read in. Can anyone suggest the proper way to get
these 2 variables to...
I have 30 various channele split into groups
serv1g1s1
dbserv100g5s1
serv1g4s2
dbserv20g15s6
I want to be able to break the list down by the groups (ie g1s1, g4s2, g5s1, g15s6 )
how can i sort when there can be any number of characters before the g, inbetween the s?
I only want the list to...
Can someone explain why the array is being put back in itself?
I don't understand why this needs to happen FILE_ARRAY[ $(( IDX )) ]="${FILE_ARRAY[ $(( IDX )) ]} ${FILE}"
set -A FILE_ARRAY
(( IDX = 0 )) ; (( COUNT = 0 ))
for FILE in ${FILES} ; do...
I'm trying to parse the following
I want to get a total of UP/DOWN from doing a status:
apps_status
sys1 UP
sys2 UP
sys3 DOWN
sys4 UP
right now I am doing
app_status |awk 'NR>1 { r[$2]++ } END {for (i in r) print r[i], i}'
how do i grep on up and down to feed into NR ?
so that I have...
Looking for thoughts on good programming...
in my case i want to be able to do both a stop and start with the restart
call. is it wise to have my var RUNCMD for both calls ?
case ${COMMAND} in
stop)
RUNCMD=stop
...
Hello
I did a search of the forum but couldn't find my answer.
I'm tracking parent and child processes that I want my child pids to be listed horizontally
instead of vertically. I attempted to insert a tab but this is not working.
MYPID="$$"
echo "PPID: ${MYPID}"
CHILDPIDS=$(ps -ef -o...
should have added.. I've read doing a kill -9 -1 ( if this would be the correct way to go?)
would do the trick but not sure how to incorporate this in the script using a proper signal
Greetings Folks!
I have a script that kicks off multiple threads that I would like to make sure if say I do a cntrl-c (the script is force aborted) will not only kill the parent PID but any sub process?
any thoughts on how I can do this where the script knows its been terminated? I've been...
...for bird.
I want to only know that my search for bird was found in DIR if file A or any other file contain uncommented bird.
doing grep bird DIR/* |grep -v ^# returns 0 because it still finds bird even though it will suppress it.
same with the egrep I am using egrep -h "^[^#].*$h" DIR/*...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.