Sponsored Content
Full Discussion: Array compare bash script
Top Forums Shell Programming and Scripting Array compare bash script Post 303000138 by batchenr on Wednesday 5th of July 2017 09:03:28 AM
Old 07-05-2017
Quote:
Originally Posted by MadeInGermany
IFS includes a newline, so you do not need xargs to convert newline to a space character.
My script sample needs a sorted input.
For example
Code:
ARRAY2=($(df -Pk | awk '$6~/^[/]/{print$6}' | sort)) # df
ARRAY=($(awk '/^[^#]/ && $2~/[/]/ && $3!~/devpts|sysfs|proc/{print $2}' /etc/fstab | sort)) # fstab

BTW df does unneeded stat() and statfs(), a mount -v would be less overhead.

---------- Post updated at 10:17 ---------- Previous update was at 10:14 ----------

Please avoid unneeded cat! If you want to have /etc/fstab first in the line then do
Code:
ARRAY=($( </etc/fstab awk '/^[^#]/ && $2~/[/]/ && $3!~/devpts|sysfs|proc/{print $2}' | sort)) # fstab

Thanks you the array worked and now ur loop also.
btw - the reason i dont compare it to mount -v is cause the system thinks that the nfs is mounted but its not and only throw df i can see it :


df :
Code:
df: `/var/spool/asterisk/monitor': Stale file handle
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        39G  9.0G   28G  25% /
tmpfs           1.9G     0  1.9G   0% /dev/shm
/dev/sda1       283M   27M  242M  10% /boot

Code:
/dev/sda2 on / type ext4 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /boot type ext4 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
192.168.223.22:/mnt/pbxarchive/PBXIL-Managment on /var/spool/asterisk/monitor type nfs (rw,vers=4,addr=192.168.223.22,clientaddr=192.168.11.100)

see that /var/spool/asterisk/monitor show like its mounted but its not also
the file looks like that :
Code:
d?????????? ? ?        ?           ?            ? monitor

and df output gives this error :
Code:
df: `/var/spool/asterisk/monitor': Stale file handle

thats why our last script that checked /proc/mounts didnt alerted us.

anyway- thank you so much for your time!

---------- Post updated at 08:03 AM ---------- Previous update was at 03:21 AM ----------

well if anyone will look it up
i have endded up doing this loop :

Code:
for i in $(</etc/fstab awk '/^[^#]/ && $2~/[/]/ && $3!~/devpts|sysfs|proc/{print $2}' | sort)
        do
        df 2> /dev/null |grep -w $i > /dev/null
                if [[ $? -ne 0 ]]
                        then
                        NOT_MOUNTED="$i $NOT_MOUNTED"
                        echo "$NOT_MOUNTED is NOT mounted!"
                        exit
                        fi
                done

Thnaks all
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Use Perl In Bash Script To Compare Floationg Points

Is there a way to compare two floating points numbers in a bash script using perl? I've tried just using a bash if statement and it doesn't seem to support floating point numbers. Can the perl line read vars from bash then output a var to bash? a=1.1 #from bash b=1.5 #from bash if... (3 Replies)
Discussion started by: Grizzly
3 Replies

2. Shell Programming and Scripting

count and compare no of records in bash shell script.

consider this as a csv file. H,0002,0002,20100218,17.25,P,barani D,1,2,3,4,5,6,7,8,9,10,11 D,1,2,3,4,5,6,7,8,9,10,11 D,1,2,3,4,5,6,7,8,9,10,11 D,1,2,3,4,5,6,7,8,9,10,11 D,1,2,3,4,5,6,7,8,9,10,11 T,5 N i want to read the csv file and count the number of rows that start with D and... (11 Replies)
Discussion started by: barani75
11 Replies

3. Shell Programming and Scripting

How to compare time in bash script?

Hi, Anyone know how to compare the time in bash script? I want to compare say 30 min. to 45 min. ( AIX ) Thanks. (1 Reply)
Discussion started by: sumit30
1 Replies

4. Shell Programming and Scripting

Bash script to compare two lists

Hi, I do little bash scripting so sorry for my ignorance. How do I compare if the two variable not match and if they do not match run a command. I was thinking a for loop but then I need another for loop for the 2nd list and I do not think that would work as in the real world there could... (2 Replies)
Discussion started by: GermanJulian
2 Replies

5. Shell Programming and Scripting

Compare file to array, replace with corresponding second array

ok, so here is the issue, I have 2 arrays. I need to be able to create a loop that will find ${ARRAY1 in the text doc, and replace it with ${ARRAY2 then write the results. I already have that working. The problem is, I need it to do that same result across however many items are in the 2... (2 Replies)
Discussion started by: gentlefury
2 Replies

6. Shell Programming and Scripting

Compare & Copy Directories : Bash Script Help

Beginner/Intermediate shell; comfortable in the command line. I have been looking for a solution to a backup problem. I need to compare Directory 1 to Directory 2 and copy all modified or new files/directories from Directory 1 to Directory 3. I need the directory and file structure to be... (4 Replies)
Discussion started by: Rod
4 Replies

7. Shell Programming and Scripting

Bash script to compare 2 file

Hello Friends please help me to create script to compare 2 fiile which has rpm info . File 1: glibc-2.12.1.149.el6_6.5.x86_64.rpm glibc-common-2.12-1.149.el6_6.5.x86_64.rpm File 2 : glibc-2.12.123.el6_6.5.x86_64.rpm glibc-common-2.12-123.el6_6.5.x86_64.rpm To compare file1... (1 Reply)
Discussion started by: rnary
1 Replies

8. UNIX for Beginners Questions & Answers

Array problem in Bash Script

I am trying to write a Bash Script using a couple of arrays. I need to perform a countdown of sorts on an array done once daily, but each day would start with the numbers from the previous day. This is what I'm starting with : #!/bin/bash days=(9 8 7 6 5) for (( i = 0 ; i < ${#days} ; i++... (4 Replies)
Discussion started by: cogiz
4 Replies

9. UNIX for Beginners Questions & Answers

Bash script to compare file all the files exits or not

Currently i am building a script like based on region parameter it will filter the records in config file and then it will create a text file like ab.txt and it will read the path location in that file and now i need to compare the files name in the config file to files in the path of the config... (1 Reply)
Discussion started by: saranath
1 Replies

10. UNIX for Beginners Questions & Answers

Compare date bash script

I all I have written a bash script for compare two date. One of those is a result of query, and another is current date. I have a problem with the format, because the first is 09/12/19 18:50:30 but for having this result I have to do d1DB=$(date -d "$valData" +'%m/%d/%y %T') and the second... (9 Replies)
Discussion started by: rdie77
9 Replies
All times are GMT -4. The time now is 02:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy