Message Area
Casually read the BBS message area using an easy to use interface. Messages are categorized exactly like they are on the BBS. You may post new messages or reply to existing messages!

You are not logged in. Login here for full access privileges.

Previous Message | Next Message | Back to Linux And Related Batch Scriptin...  <--  <--- Return to Home Page
   Networked Database  Linux And Related Batch Scriptin...   [129 / 130] RSS
 From   To   Subject   Date/Time 
Message   Deon George    Alan Ianson   My bash script   August 4, 2019
 12:23 PM *  

  Re: My bash script
  By: Alan Ianson to All on Sat Aug 03 2019 12:13 pm

 > Hello All,
 > I am using this in a bash script to toss incoming files here and am having a
 > problem with it that I hope someone can shed some light on for me.

 > if [ -f fido/inbound/*.tic ]; then

 > there in just one inbound *.tic but if there are more than one tic to be
 > processed it fails and I see this..

Yeah, the reason it would fail, is the shell will expand it. IE: If you have 2
TIC's "a.tic", "b.tic", the command expands to:

: if [ -f fido/inbound/a.tic fido/inbound/b.tic ]; then

Which is a syntax error. There are probably many ways to do this, the way I
would do it is:

MOVED=0
for i in fido/inbound/*.tic; do
  # If there are no files $i will equal "fido/inbound/*.tic"
  if [ "$i" == "fido/inbound/*.tic" ]; then continue; fi

  mv $i $destination;
  MOVED=1
done

if [ ${MOVED} -eq 1 ]; then
...
fi

 > One last question.. I have a second section like the aboveeeee that looks
 > for *.TIC instead of *.tic. Is there a way to edit the above line to look
 > for both *.tic and *.TIC?

In my above example, you could have

for i in fido/inbound/*.tic fido/inbound/*.TIC; do

And then have another test for the uppercase *.TIC, that "continues".


...δεσπ
--- SBBSecho 3.07-Linux
 * Origin: Alterant | An SBBS in Docker on Pi! (3:633/509)
  Show ANSI Codes | Hide BBCodes | Show Color Codes | Hide Encoding | Hide HTML Tags | Show Routing
Previous Message | Next Message | Back to Linux And Related Batch Scriptin...  <--  <--- Return to Home Page

VADV-PHP
Execution Time: 0.0618 seconds

If you experience any problems with this website or need help, contact the webmaster.
VADV-PHP Copyright © 2002-2024 Steve Winn, Aspect Technologies. All Rights Reserved.
Virtual Advanced Copyright © 1995-1997 Roland De Graaf.
v2.0.140505

Warning: Unknown: open(c:\Sessions\sess_22g51bg8f94oalt7cmkt5q31d3, O_RDWR) failed: No such file or directory (2) in Unknown on line 0 Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (c:\Sessions) in Unknown on line 0 PHP Warning: session_start(): open(c:\Sessions\sess_22g51bg8f94oalt7cmkt5q31d3, O_RDWR) failed: No such file or directory (2) in D:\wc5\http\public\VADV\include\common.inc.php on line 45 PHP Warning: Unknown: open(c:\Sessions\sess_22g51bg8f94oalt7cmkt5q31d3, O_RDWR) failed: No such file or directory (2) in Unknown on line 0 PHP Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (c:\Sessions) in Unknown on line 0