For loop without checking file exists


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting For loop without checking file exists
# 8  
Old 04-20-2016
A general test without file exists checks to see if there are still glob characters in the filename, which should also work, but also only if there are no file names with actual glob characters:

Code:
for i in N???
do 
  if [ "${i%[?*]*}" = "$i" ]; then
    printf "%\n" "$i"
  done
done

or

Code:
for i in N???
do 
    case $i in (*[?*]*)
      break
    esac
    printf "%\n" "$i"
done


Last edited by Scrutinizer; 04-20-2016 at 12:56 AM..
# 9  
Old 04-20-2016
I think in ksh it is

set -o noglob

The disadvantage of this (and of bash's nullglob) is that the option is turned on until you turn it off explicitly. I suggest that you switch to zsh, where you can define this behaviour for each pattern separately. In zsh, the loop would be written as

Code:
    for fn in N???(N)
    do
        ....
    done

and the body would be skipped if there is no file matching the pattern; no error message here. While zsh differs in several ways from ksh/bash/dash, I find it much more convenient for shell programming than the other ones.
These 2 Users Gave Thanks to rovf For This Post:
# 10  
Old 04-20-2016
Just checked on zsh, thanks. I will keep this shell in mind
# 11  
Old 04-21-2016
Quote:
Originally Posted by rovf
I think in ksh it is

set -o noglob

... ... ...
No. set -o noglob is a synonym for set -f in ksh. Both of which disable globing; they are not equivalent to the bash shopt -s nullglob.

If a directory contains files named x.txt and y.txt, the commands:
Code:
set +f	# default initial state
for i in *.txt
do	printf '%s\n' "$i"
done

produces the output:
Code:
x.txt
y.txt

and the commands:
Code:
set -f	# turn off globing
for i in *.txt
do	printf '%s\n' "$i"
done

produces the output:
Code:
*.txt

The set -f and set +f commands are required by the standards and are available in bash, ksh, and zsh.
These 3 Users Gave Thanks to Don Cragun For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problem with ssh and checking if file exists

Hi All, I am facing a problem while checking for existence of file over ssh ! Basically, i want to ssh and check if file exists.. If file exists return 1. If file does not exits return 0 (or any value) I am using the below code file_avail=`ssh username@host "if ]; then exit 1;... (10 Replies)
Discussion started by: galaxy_rocky
10 Replies

2. Shell Programming and Scripting

Checking if file exists and unzipping

Hey, I am new to scripting and was wondering what is wrong with this if statement. I want to check if file exists and the if it does to unzip it. I program it as follows if ; then gunzip *_filename.gz fi Thanks in advance! Please use code tags next time for your code and data. (10 Replies)
Discussion started by: mostarac2487
10 Replies

3. Shell Programming and Scripting

while loop checking for file

Hi I my shell scripting(Main.ksh) i am calling the another loader.ksh using nohup inside the for loop ...so the above command runs parallel. Loader.ksh generate the dummy file seq_n.run file and deleted in the end of the Loader.ksh In the main.ksh .. after the for loop .. i have to check... (1 Reply)
Discussion started by: gavemani
1 Replies

4. Shell Programming and Scripting

Checking whether the file exists under a directory and doing a diff

Hi Everyone, I am writing a shell script for the below needs and would like your suggestions and advices. I have a lot of scripting files(Shell Scripts) under the directory: /home/risk_dev/dev I have another directory which has a lot of shell scripts under the directory: ... (2 Replies)
Discussion started by: filter
2 Replies

5. Shell Programming and Scripting

what is the difference between -f and -e, when checking for file exists

Hi All, what is the difference between -f and -e. Regards, ch33ry (1 Reply)
Discussion started by: ch33ry
1 Replies

6. Shell Programming and Scripting

Checking if file exists

How can I check if a file exists in csh? I know there is "-e $file" but do not know exactly how to use it. I have tried the below but I'm getting "Bad : modifier in $ ( )." foreach f ($AfullnameLst) if (-e $f) then echo "$f: file exists" endif end (6 Replies)
Discussion started by: kristinu
6 Replies

7. Shell Programming and Scripting

Checking if file exists using a NOT operator and shell variable

Hi, I'm new to UNIX, at least shell programming and am having trouble figuring out a problem i'm having. In one section in my nested if statement, i want the program to test if the file does not exist, based on an argument supplied at the command line by the user. What i have is elif ; then... (3 Replies)
Discussion started by: rowlf
3 Replies

8. Shell Programming and Scripting

Checking if a file exists

How can I check if a file exists in shell script. Basically, I want to check if a file Test_msgs has been created today. If it has been then append data to it. Otherwise, create it. I have written the following but it does not work. todaysdate=$(date +%d%m%Y) timenow=$(date +%H%M%S)... (4 Replies)
Discussion started by: gugs
4 Replies

9. Shell Programming and Scripting

Checking the file if it exists

Hi This will be useful who is looking for checking the files in a directory #chmod 777 /cronacle/tools/teradata/opo/bin/file_check.sh SUBJECT=`echo "File Not Found"` SUBJECT1=`echo "File Found"` #RECIPIENT=Madhu.Reddy@ge.com cd /cronacle/tools/teradata/opo/bin file_list=attach.sh if ... (3 Replies)
Discussion started by: ksmbabu
3 Replies

10. IP Networking

checking a connection still exists?

Hi I have a bit of c code which I'm trying to use as a relay between apache and a scgi cluster. Example of problem code is below: while((n = recv(scgiSock, local_data, MAX_LENGTH, 0)) > 0) { time(&t2); time_now = t2 - t1; if(time_now > TIMEOUT) ... (2 Replies)
Discussion started by: fishman2001
2 Replies
Login or Register to Ask a Question