Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Is there a way to ignore CAPS or case sensitivity? Post 302555801 by Corona688 on Thursday 15th of September 2011 04:04:27 PM
Old 09-15-2011
Quote:
Originally Posted by rebazon
If I'm using a program that is expecting certain filenames and directories to be all CAPS, isn't there a way to ignore this in linux/cshell scripting?
Could you explain a little further? UNIX filenames are case-sensitive, the requirement's rather strange. You'd never find "filename" from "FILENAME".
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Case sensitivity

Is there any way of stopping UNIX from being case sensitive? (2 Replies)
Discussion started by: Taveirne
2 Replies

2. Shell Programming and Scripting

Ignore Case in Shell

Hi New to this Unix dot com. I would like to know how i can ignore the case in filename which is getting as user directoty to shell script. For Ex: Source (/aa/bb/patch/) Directory may contains more than 1 files as like 1. aa.csv or Aa.csv or AA.csv or aa.CSV 2. bb.csv 3. ... (3 Replies)
Discussion started by: AAH
3 Replies

3. 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

4. Shell Programming and Scripting

How do I ignore one character in a case statement? PLEASE HELP!

Hello, I am new to this forums. I need help with shell, and ksh in particular. I have a case statement that does something if -k. So it looks like: case $arg in -k) PUT=y, SEND=1 Thats all good and dandy. But now I want to change it where whether or not the user puts -k or not, it will do... (2 Replies)
Discussion started by: cpunisher
2 Replies

5. Programming

Ignore case in a test?

How do I ignore the case in an if condition..? EDIT: I put this in the wrong board...this is a linux script. if then echo "Same name." else echo "Different name." fi (1 Reply)
Discussion started by: Bandit390
1 Replies

6. Shell Programming and Scripting

how to ignore case

Hi All, The means I use to ignore case, as an example is the following snippet: It should accept any oof the following y|Y|YES|Yes|n|N|NO|No echo "Enter Y/N to continue: " read choice; (3 Replies)
Discussion started by: raghur77
3 Replies

7. Shell Programming and Scripting

To ignore user input case.

hi, i will like to know whether awk command can ignore case? i written a script that will take in user input and search for data on the 1st field from a text file. echo -n "Title:" read title awk -F":" '$1~/'"$title"'/{print $0}' Filename read ans return ... (5 Replies)
Discussion started by: Cheranime
5 Replies

8. Shell Programming and Scripting

simple but challenging ignore case

Folks - I found this code on the forums to extract a paragraph for a matching pattern but I don't know how to make it ignore case. grep "-ip" is not an option for me as I am on SUSE LINUX. Thanks for ur help. I run this script as below: grep_para.ksh sqlstate < logfile "The end result... (2 Replies)
Discussion started by: beowulfkid
2 Replies

9. Shell Programming and Scripting

Question about REGEX Patterns and Case Sensitivity?

Hello All, I'm in the middle of a script and I'm doing some checks with REGEX (i.e. using the '"shopt -s nocasematch" that at least the first one should print "FALSE" but it prints "TRUE"..? For Example: #!/bin/bash MY_VAR="HELLO" ### This prints "TRUE" PATTERN_1="^*" if ] then... (5 Replies)
Discussion started by: mrm5102
5 Replies

10. Shell Programming and Scripting

Merge strings with ignore case

I have a bi-lingual database of a large number of dictionaries. It so happens that in some a given string is in upper case and in others it is in lower case. An example will illustrate the issue. toll Tax=पथ-कर Toll tax=राहदारी कर toll tax=टोल I want to treat all three instances of toll tax... (3 Replies)
Discussion started by: gimley
3 Replies
CHANGESTOOL(1)							     REPREPRO							    CHANGESTOOL(1)

NAME
changestool - verify, dump, modify, create or fix Debian .changes files SYNOPSIS
changestool --help changestool [ options ] .changes-filename command [ per-command-arguments ] DESCRIPTION
changestool is a little program to operate on Debian .changes files, as they are produced by dpkg-genchanges(1) and used to feed built Debian packages into Debian repository managers like reprepro(1) or dak. EXAMPLES
changestool bloat.changes setdistribution local will modify the Distribution: header inside bloat.changes to say local instead of what was there before. changestool reprepro_1.2.0-1.local_sparc.changes includeallsources will modify the given file to also list .orig.tar.gz it does not list because you forgot to build it with dpkg-buildpackage -sa. changestool blafasel_1.0_abacus.changes updatechecksums will update the md5sums to those of the files referenced by this file. (So one can do quick'n'dirty corrections to them before uploading to your private package repository) changestool --create test.changes add bla_1-1.dsc bla_1-1_abacus.deb will add the specified files (format detected by filename, use adddeb or adddsc if you know it). If the file test.changes does not exist yet, a minimal one will be generated. Though that might be too minimal for most direct uses. GLOBAL OPTIONS
Options can be specified before the command. Each affects a different subset of commands and is ignored by other commands. -h --help Displays a short list of options and commands with description. -o --outputdir dir Not yet implemented. -s --searchpath path A colon-separated list of directories to search for files if they are not found in the directory of the .changes file. --create Flag for the commands starting with add to create the .changes file if it does not yet exists. --create-with-all-fields Flag for the commands starting with add to create the .changes file if it does not yet exists. Unlike --create, this creates more fields to make things like dupload happier. Currently that creates fake Urgency and Changes fields. --unlzma command External uncompressor used to uncompress lzma files to look into .diff.lzma, .tar.lzma or .tar.lzma within .debs. --unxz command External uncompressor used to uncompress xz files to look into .diff.xz, .tar.xz or .tar.xz within .debs. --lunzip command External uncompressor used to uncompress lzip files to look into .diff.lz, .tar.lz or .tar.lz within .debs. --bunzip2 command External uncompressor used to uncompress bz2 when compiled without libbz2. COMMANDS
verify Check for inconsistencies in the specified .changes file and the files referenced by it. updatechecksums [ filename ] Update the checksum (md5sum and size) information within the specified .changes file and all .dsc files referenced by it. Without arguments, all files will be updated. To only update specific files, give their filename (without path) as arguments. setdistribution [ distributions ] Change the Distribution: header to list the remaining arguments. includeallsources [ filename ] List all files referenced by .dsc files mentioned in the .changes file in said file. Without arguments, all missing files will be included. To only include specific files, give their filename (without path) as arguments. Take a look at the description of -si, -sa and -sd in the manpage of dpkg-genchanges/dpkg-buildpackage how to avoid to have to do this at all. Note that while reprepro will just ignore files listed in a .changes file when it already has the file with the same size and md5sum, dak might choke in that case. adddeb filenames Add the .deb and .udeb files specified by their filenames to the .changes file. Filenames without a slash will be searched in the current directory, the directory the changes file resides in and in the directories specified by the --searchpath. adddsc filenames Add the .dsc files specified by their filenames to the .changes file. Filenames without a slash will be searched in the the current directory, in the directory the changes file resides in and in the directories specified by the --searchpath. addrawfile filenames Add the files specified by their filenames to the .changes file. Filenames without a slash will be searched in the current direc- tory, in the directory the changes file resides in and in the directories specified by the --searchpath. add filenames Behave like adddsc for filenames ending in .dsc, like adddeb for filenames ending in .deb or .udeb, and like addrawfile for all other filenames dumbremove filenames Remove the specified files from the .changes file. No other fields (Architectures, Binaries, ...) are updated and no related files is removed. Just the given files (which must be specified without any /) are no longer listen in the .changes file (and only no longer in the changes file). SEE ALSO
reprepro(1), dpkg-genchanges(1), dpkg-buildpackage(1), md5sum(1). REPORTING BUGS
Report bugs or wishlist requests the Debian BTS (e.g. by using reportbug reperepro) or directly to <brlink@debian.org>. COPYRIGHT
Copyright (C) 2006-2009 Bernhard R. Link This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. reprepro 2010-03-19 CHANGESTOOL(1)
All times are GMT -4. The time now is 10:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy