Case sensitive in If loop .


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Case sensitive in If loop .
# 8  
Old 11-25-2014
Code:
# Fill list
LIST=$HOME/*

# Select from list
select THAT in $LIST;do
  echo "$THAT"
  break
done

Its not like an if else statement is any diffrent regarding required modifications upon copy paste to another machine from the description you gave.

Furthermore, please use CODE tags around code examples, thank you.
# 9  
Old 11-25-2014
Quote:
: : bad substitution
What's your shell?
Is it possible that your shell is *not* bash ? Or rather old bash?
It works for me in bash, but dash will complain about bad substitution.
# 10  
Old 11-25-2014
Hi Rudic,

i tried with below set of combinations:
Code:
if [ "${option^^}" = "ALL" ]
if [ "${option^}" = "ALL" ]
if [ "${option,}" = "ALL" ]
if [ "${option,,}" = "ALL" ]

but didn't help....Again same error
Code:
 ": : bad substitution"

Thank You!

---------- Post updated at 01:37 PM ---------- Previous update was at 01:34 PM ----------

Code:
$ echo $SHELL
/bin/ksh


Last edited by Don Cragun; 11-27-2014 at 03:46 PM.. Reason: Add CODE tags.
# 11  
Old 11-25-2014
in ksh - option will be in LOWER case whatever the input is:
Code:
typeset -l option
....
if [ "${option}" = 'all' ]

Or the poor-man case conversion...
Code:
if [ "$(echo ${option} | tr 'A-Z' 'a-z')" = 'all' ]

# 12  
Old 11-25-2014
Hi vgersh99,

the 2nd one worked. Thank you All for your time & response!!!
But when i used 1st option saw below error:
Code:
 typeset: -l: invalid option
typeset: usage: typeset [-afFirtx] [-p] name[=value] ...

Thanks once again.

Last edited by Don Cragun; 11-27-2014 at 03:47 PM.. Reason: Add CODE tags.
# 13  
Old 11-25-2014
Quote:
Originally Posted by Devaraj A
Hi vgersh99,

the 2nd one worked. Thank you All for your time & response!!!
But when i used 1st option saw below error:
typeset: -l: invalid option
typeset: usage: typeset [-afFirtx] [-p] name[=value] ...

Thanks once again.
what shell interpreter are you using for your script?
Does the first line in the script looks similar to:
Code:
#!/bin/ksh

the typeset -l is specific to ksh. Make sure you're specifying what shell interpreter outght to be used in the script.
# 14  
Old 11-25-2014
Hi vgersh99,

yes the script starts with
Code:
#!/bin/ksh


Last edited by Don Cragun; 11-25-2014 at 04:27 PM.. Reason: Fix CODE tags.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Please help me in using case sensitive command

Hello All, Please help me with this I need to create a cronjob that should delete all files which are older than 30days with '*.txt' and should not delete files with '*TEST*.txt' either file name TEST is upper or test lower case sensitive here's the script /DIR -type f -name '*.txt'... (7 Replies)
Discussion started by: krish_007
7 Replies

2. Shell Programming and Scripting

Repeated lines-case sensitive

Hi, users file contains below names i have a requirement to keep only one case sensitive user. For e.g if user name is "aaa" then only aaa should be there in the file and other matching users(AAA,aaA) should be deleted. Tried multiple options but no luck can you please help. aaa abc AAA... (2 Replies)
Discussion started by: Satyak
2 Replies

3. Shell Programming and Scripting

Case sensitive awk file split

Hello all, This is my first thread so please let me know if I am doing anything wrong or not following etiquette. I have an input file that looks like 123a12345 345a12445 245a66792 245A12345 215A23566 and I want output files that look like a.txt 123a12345 345a12445 245a66792 ... (7 Replies)
Discussion started by: monstrousturtle
7 Replies

4. UNIX for Advanced & Expert Users

find iname is being case sensitive

Can someone please tell me why iname is being case sensitive with this? $ find /media -iname *load* 2>/dev/null /media/Part 2/stuff/Downloads /media/Part 1/Application Data/Mozilla/Firefox/Profiles/wnul4kj4.irc/chatzilla/downloads /media/Part 1/Bob_5-22-2010/Application... (5 Replies)
Discussion started by: cokedude
5 Replies

5. UNIX for Dummies Questions & Answers

How to take parameters as non case sensitive

Is there a way for me to take a parameter then store it in a variable and use its value as non case sensitive? Ex. Lets say i have a parameter which contains "Hey". Then im gonna store it to GR using GR=$1. CL=/install/$GR.g How can i make GR non case sensitive so that the... (1 Reply)
Discussion started by: khestoi
1 Replies

6. Solaris

Tcp_conn_req_max_q (CASE-sensitive?)

I was instructed by my superior to change kernel parameter, adding up this parameter to /etc/system. Server is Solaris 10 on SPARC. Tcp_conn_req_max_q 1024In my Google search, all I know that the sentence is in small case (tcp_conn_req_max_q) but as you can see above, instruction given... (4 Replies)
Discussion started by: Olli.Lang
4 Replies

7. Shell Programming and Scripting

Ignore case sensitive in Case Switch

In a Case switch, how to ignore case sensitive in the test: e.g. case "$field" in "TEST) action1;; *) action2;; esac How to go in action1 in case of $field = TEST , or Test , or test or .... without enumerating all possibilities... Thanks,... (1 Reply)
Discussion started by: annelisa
1 Replies

8. UNIX for Dummies Questions & Answers

how to disable case sensitive on RHEL ?

Hi all, Im newbie, can i disable case sensitive on RHEL environment, and how? Thank you. (2 Replies)
Discussion started by: blesets
2 Replies

9. UNIX for Dummies Questions & Answers

Is Hostname Case sensitive ?????

Hello users, I have a question ? I was just wondering whether the hostname on unix systems are case sensitive. For example in the system which I work. ping TestHost and ping testhost gives me the same output i.e I get the reply from the remote host Is this applicable for all... (3 Replies)
Discussion started by: ajphaj
3 Replies

10. UNIX for Dummies Questions & Answers

Unix user ID's case-sensitive?

It has been quite a while since I used UNIX. I am developing a security system and I was wondering if UNIX and/or LINUX user ID's are case-sensitive. i.e. can user 'daveb' and 'Daveb' exist on the same system with completely different authorizations/priorities, etc.? (3 Replies)
Discussion started by: dmilleville
3 Replies
Login or Register to Ask a Question