Sponsored Content
Top Forums Shell Programming and Scripting how can i check if text file is closed ? Post 302102730 by matrixmadhan on Friday 12th of January 2007 10:03:36 AM
Old 01-12-2007
Quote:
Originally Posted by jim mcnamara
Code:
#!/bin/ksh
in_use=$(fuser -u /path/to/file/filename)
if [ ${#in_use} -gt 0 ] ; then
   echo "file in use"
else
   echo "file not in use"
fi

I have few objections with the above!

on the same node with two different sessions,
I ran the following

session I
>
Code:
while :
do
echo "a" > file1
done

session II
>
Code:
while :
do 
fuser -u file1; echo $?
sleep 1
done


the output really alternates between being used -> not being used


from the man pages of fuser,
fuser returns a non-zero return code if none of the specified files is
accessed or in case of a fatal error. If at least one access has been
found, fuser returns zero.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to check if a unix text file is being accessed?

I am writing a script that periodically reads in data from a text file. The only issue is that, that text file is periodically updated (appended to) by another script. I am using perl in UNIX environment. How can I check if that text file is being accessed, so I can wait until it is no longer being... (6 Replies)
Discussion started by: rickylui
6 Replies

2. UNIX for Advanced & Expert Users

How to check a file in UNIX is closed or growing?

We have a third party tool in UNIX to kick off a 'file copy' job based on a file existance. If a specific file exists in an UNIX directory, another process should start copy the file into another system for further processing. The issue is, the copy job is starting as soon as the file exists in... (6 Replies)
Discussion started by: kslakshm
6 Replies

3. Shell Programming and Scripting

Need a script that will check for changes in a text file

Hi Everyone, Can someone please show me how to create a script that will search a text file for changes. For example below is a sample of how the text file would look like, RLH rlh-1 ALIVE 20:06:05 RLH rlh-7 ALIVE 20:06:05 RLH rlh-3 ALIVE ... (7 Replies)
Discussion started by: kumaran21
7 Replies

4. Shell Programming and Scripting

Check if a text file is empty or not (using ls -s)

Hello, I want to make a script which says if a text file is empty or not. I tried two ways of making it, but I have problems with both of them. Now I think that the better way is the ls -s solution (considering that an empty text file has a 0 weight, because "cat file.txt" fails when file is... (4 Replies)
Discussion started by: Link_
4 Replies

5. Shell Programming and Scripting

shell script to take input from a text file and perform check on each servers and copy files

HI all, I want to script where all the server names will be in a text file like server1 server2 server3 . and the script should take servernames from a text file and perform copy of files if the files are not present on those servers.after which it should take next servername till the end of... (0 Replies)
Discussion started by: joseph.dmello
0 Replies

6. Shell Programming and Scripting

need to wait until Text Editor is closed

Hi, I am writing an SH script where I need to open text editor from within the script and wait until the user closed or quit text editor. And then execute consecutive commands. Here is a very simplified example: gedit data.txt # ---- wait until Text editor is exited echo "Text Editor is... (1 Reply)
Discussion started by: dd_u_dev1982
1 Replies

7. Shell Programming and Scripting

Shell program to check if the same text appears twice in an XML file

Hi All, I am very new to this forum and beginner to shell scripting. I need a shell script to: Search for a text in XML file à if the same text appears twice in an XML file à output file name Script should loop thru every xml file of a given folder. Please help me writing this script. ... (1 Reply)
Discussion started by: amardeep001
1 Replies

8. Shell Programming and Scripting

Check if the text file has more than 2 characters

Guys, I know that the below command will cut the 13th field from test.txt file awk -F"|" '{print $13}' test.txt The answer would be, CA CN Ohio If we see the 3 rd one, it has more than 2 characters. So i wanted to check this in if condition and i want to get the output if the 13th... (4 Replies)
Discussion started by: AraR87
4 Replies

9. Shell Programming and Scripting

[Solved] Replacing line of text while file is closed

Is it possible to replace a line of text within a file while it's closed with a single command or a script? Please show me an example or point me to a webpage that shows an example. The file has this line of text: LoginGraceTime 100 I want to replace it with the following: ... (2 Replies)
Discussion started by: wdg74
2 Replies

10. Shell Programming and Scripting

Check if files inside a text file are found under a directory

Hi all, Please somebody help me with this: I want to check if the files listed in a text file, are found under a directory or not. For example: the file is list_of_files.txt, which contains inside this rows: # cat list_of_files logs errors paths debug # I want to check if these... (3 Replies)
Discussion started by: arrals_vl
3 Replies
SD_BOOTED(3)							     sd_booted							      SD_BOOTED(3)

NAME
sd_booted - Test whether the system is running the systemd init system SYNOPSIS
#include <systemd/sd-daemon.h> int sd_booted(void); DESCRIPTION
sd_booted() checks whether the system was booted up using the systemd init system. RETURN VALUE
On failure, this call returns a negative errno-style error code. If the system was booted up with systemd as init system, this call returns a positive return value, zero otherwise. NOTES
This function is provided by the reference implementation of APIs for new-style daemons and distributed with the systemd package. The algorithm it implements is simple, and can easily be reimplemented in daemons if it is important to support this interface without using the reference implementation. Internally, this function checks whether the directory /run/systemd/system/ exists. A simple check like this can also be implemented trivially in shell or any other language. For details about the algorithm check the liberally licensed reference implementation sources: http://cgit.freedesktop.org/systemd/systemd/plain/src/libsystemd-daemon/sd-daemon.c and http://cgit.freedesktop.org/systemd/systemd/plain/src/systemd/sd-daemon.h sd_booted() is implemented in the reference implementation's sd-daemon.c and sd-daemon.h files. These interfaces are available as a shared library, which can be compiled and linked to with the libsystemd-daemon pkg-config(1) file. Alternatively, applications consuming these APIs may copy the implementation into their source tree. For more details about the reference implementation, see sd-daemon(3). If the reference implementation is used as drop-in files and -DDISABLE_SYSTEMD is set during compilation, this function will always return 0 and otherwise become a NOP. SEE ALSO
systemd(1), sd-daemon(3) systemd 208 SD_BOOTED(3)
All times are GMT -4. The time now is 01:33 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy