Removing a space from file name

2025-02-17 Thread hput
I have several hundred *.jpg files with this pattern Actual example: 'AtlantaVisitAndGrandmaHands 056.jpg' The numbers vary, of course, but the alpha part and number of digits after the space is the same in all *.jpg files I have hundreds of these all in one directory. Not something you'd w

Is this bit of scrip a reasonable way to test something

2022-01-02 Thread hput via beginners
I was just coding in in ksh93 for simple script but tangled up with way matching and regex work in ksh93. Finally trashed it turned to perl. Just have familiarity with one way of test in shell script: Put it in an if clause like (in shell): if [ cd somedir ];then print "ok permissions we

Re: run cmd, writing output to log file

2021-10-07 Thread hput
Ken Slater writes: [...] snip >> --- --- ---=--- --- --- >> At first glace, looks like $log was used instead of instead of $fh. >> Andy Bach writes: > What Ken said: > > while (<$ch>) { > print $fh "$PaddedDateStr $_"; > } Thx to both of you.