I have a korn shell script that does some things that depend on creating and writing a file in a directory. I'm looking for a more elegant/efficient way to do the check than what I'm using now:
We need a little bit more of a description of what you're trying to do (rather than just a thread title) to be able to suggest ways to to accomplish what you want to do...
Trying from another system - and double ugh... The thread was supposed to be and at least was started in the shell scripting/programming forum.
Either this got moved here because of the blank body in the first post, or there is some forum corruption, maybe?
Interesting.
This is Firefox on Linux Mint/MATE and the other post was from a Mac with SeaMonkey.
Maybe a cookie/tracker thing?
---------- Post updated at 05:46 PM ---------- Previous update was at 05:40 PM ----------
So, back to the original post --
I have a korn shell script that does some things that depend on creating and writing a file in a directory. I'm looking for a more elegant/efficient way to do the check than what I'm using now:
I am trying to test the output of a file. What I have so far is this:
if ]; then echo "yes";fi
The problem with this is it works but I only want it to print out if the file contains the word "Compacted." The == sign means identical or equal to so it won't work. I tried ~ but that doesn't... (4 Replies)
Hi Gurus, kindly analyse the following for me, please
OS: Windows 7
Code location: C:\
Output: "Program Files not being recognised"
"System Volume Information is a directory"
"Windows not being recognised"
main {
my @dirlist = <*>;
foreach my $fn... (0 Replies)
Hi,
could any one tell is there any test-suite or any idea How to do data corruption validation testing, means there is no any data corruption ?
Regards
Manish (1 Reply)
script name: filetest.sh
if ; then
echo " You didn't enter any argument"
elif ; then
echo " file not exist"
elif ; then
echo " file not readable"
elif ; then
echo " file not writable"
else
echo " file both readable and writable"
fi
running like...
$ ./filetest filename
... (3 Replies)
i have written this simple script called isdir.sh
#! /bin/bash
dir=$1
_ls=`ls $dir`
for file in $_ls
do
if
then
echo "D $file"
fi
donethe output is not right.
for example
$ ./isdir.sh src
***no output***
but i have in ~/src some directories
drwxr-xr-x 2... (5 Replies)
Hello,
I need to determine if a file I have is empty or not. How can I go about doing this in shell scripting? Some sample code would be appreciated?
Thanks, (6 Replies)
I'm running this simple little test:
#!/bin/sh
if ; then
echo $1
else
echo "Usage:`basename $0` dir"
fi
echo "The end of the script."
The idea is, to test if you have passed a dir to the script. The problem is, it seems to exit the if statement when $1 is null:
... (3 Replies)
Has anyone got a few tips on how I can test if the file size is 0?
I am moving files on a regular basis from one location to another with ftp. The files which are 0 bytes in size we want to discard.
Thankyou in advance. (3 Replies)