Sponsored Content
Full Discussion: Cant check empty string
Top Forums Shell Programming and Scripting Cant check empty string Post 302924079 by sea on Thursday 6th of November 2014 05:51:01 AM
Old 11-06-2014
Cant check empty string

Hello

So i have that script collection, in which i have a single script to create a configuration file.
In there, i have multiple occourences of something like this:
Code:
	prj_title=$(tui-read "What is the TITLE? ($prj_name):")
	[[ -z "$prj_title" ]] && prj_title="${prj_name/_/ }"

They all work as expected, if nothing is entred, it fills the variable with the default value.

However, for this it fails, and i fail to figure out why:
Code:
#
# Ask for a value, if value is empty, fill it with default
#

prj_tempdird="/tmp/${prj_name}_$ARCH"
prj_tempdir=""

#prj_tempdir=$(tui-read "What is the temp directory? ($prj_tempdird):")
read -p "What is the temp directory? ($prj_tempdird):" prj_tempdir

[[ -z "$prj_tempdir" ]] && prj_tempdir="$tempdird"
[[ -z $prj_tempdir ]] && prj_tempdir="$tempdird"
[[ "" = "$prj_tempdir" ]] && prj_tempdir="$tempdird"
[[ "" = "$(echo $prj_tempdir)" ]] && prj_tempdir="$tempdird"
[[ "" = "$(echo $prj_tempdir|tr -d [[:space:]])" ]] && prj_tempdir="$tempdird"
[[ -z "$(echo $prj_tempdir)" ]] && prj_tempdir="$tempdird"

echo "$prj_tempdir =! $prj_tempdird"

This is what i get:
Code:
:) ~ $ sh file1.txt
What is the temp directory? (/tmp/_):/home/TEMP
/home/TEMP =! /tmp/_               (this is 'expected')

+ ~ $ sh file1.txt
What is the temp directory? (/tmp/_):
 =! /tmp/_                        (this is NOT)
+ ~ $

This is what i expect:
Code:
+ ~ $ sh file1.txt
What is the temp directory? (/tmp/_):
/tmp/_ =! /tmp/_

Any ideas please?
Thank you in advance
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to check for null or empty string

Hi, I need to check for value not equal (<>) to 21 and not equal empty or null values. Please modify this script if then echo "$VALUE,$BSC_NAME,$BSC_ID" > $OUT_FILE/power_up.out end if TQ (5 Replies)
Discussion started by: doer
5 Replies

2. Shell Programming and Scripting

Check for empty string

Hello All, I have written shell script whcih at the max 3 parameters. When only one commandline argument and other two command line arguments are passed as empty string like eg : archive ' ' ' ' Then i need to check whether the commandline... (12 Replies)
Discussion started by: rahman_riyaz
12 Replies

3. UNIX for Dummies Questions & Answers

How to check if a file is empty?

Hi Masters..... I have problem !!! I need to check number of records in a file and if it is zero or file is empty i need to do some task. if ; then echo "File s empty" else echo "Not empty" fi so how to check this condition. I used wc -l < filename.txt => 1 for zero records same result... (1 Reply)
Discussion started by: shreekrishnagd
1 Replies

4. Shell Programming and Scripting

check whether the directory is empty or not

I have the list of users in user.log, under each user folder there is sub1 folder is there. i want to check whether sub1 is empty or not, if it is empty i have to skip that user user folder and iterate next user folders. i have the sample code,its not giving not proper results. while read line... (8 Replies)
Discussion started by: KiranKumarKarre
8 Replies

5. Shell Programming and Scripting

check empty directory !!!

I need to check if a directory is empty using an if condition in the pseudocode below if ; then else although i looked at a few forums on this topic, I left feeling a little unclear and i could not use the command successfully what can i substitute in the if conditon above,... (2 Replies)
Discussion started by: allah_waris45
2 Replies

6. UNIX for Dummies Questions & Answers

Check to see if string var is empty

i have a veriable set var1 set var2 = abcd how can i check if var 1 is empty and if var 2 is not empty ??? (2 Replies)
Discussion started by: nirnir26
2 Replies

7. Shell Programming and Scripting

Check if the string is empty

I am reading from a file and executing the jobs with/without parameters as the job requires. File job1 R job2 job3 Y 123 if then <job>.ksh else <job>.ksh $params fi This works fine if the line read from the file has parameters it executes like job1.ksh R But for... (2 Replies)
Discussion started by: nw2unx123
2 Replies

8. Shell Programming and Scripting

How to check whether a variable is empty or contains some value?

hi, i want to check whether a a variable contains some value or is empty in a shell script. so if the variable contains some value i want to do some job and if the variable doesnt contain any value then i need to skip that job. here is a sample script read_filenames.sh contains ... (5 Replies)
Discussion started by: Little
5 Replies

9. Shell Programming and Scripting

Empty file check

Hi gurus , I have two files and i want to perform different action based on the condition if both or either is empty If then Do something elif then do something elif then do something else do something fi I have tried the below bt its not... (4 Replies)
Discussion started by: r_t_1601
4 Replies

10. Shell Programming and Scripting

How to check empty string in an XML tag?

I have an XML tag <abc> which is empty as <abc></abc>.If the the tag is empty I want to flag the file as bad. Please help. Thanks (3 Replies)
Discussion started by: aneeta13
3 Replies
LR_ENVIRONMENT.IN(1)					  LogReport's Lire Documentation				      LR_ENVIRONMENT.IN(1)

NAME
lr_environment - Export Lire configuration in shell script form SYNOPSIS
eval `lr_environment` DESCRIPTION
The lr_environment command is used to import the Lire configuration in Lire shell scripts. All of Lire configuration variables will be written in a format that can be evaled by the shell. Shell scripts don't usually have to use that command, since it is done by the defaults file sourced by each command. The old names used by when the configuration was done in shell script are also exported by this script for backward compatibility. AUTHOR
Francis J. Lacoste <flacoste@logreport.org> VERSION
$Id: lr_environment.in,v 1.12 2006/07/23 13:16:33 vanbaal Exp $ COPYRIGHT
Copyright (C) 2003 Stichting LogReport Foundation LogReport@LogReport.org This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program (see COPYING); if not, check with http://www.gnu.org/copyleft/gpl.html. Lire 2.1.1 2006-07-23 LR_ENVIRONMENT.IN(1)
All times are GMT -4. The time now is 05:18 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy