TAB : Auto-Fill Issue


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting TAB : Auto-Fill Issue
# 1  
Old 10-30-2009
Bug TAB : Auto-Fill Issue

Dear Forum Members,

We use TAB to Auto-Fill the file/directory names starting with that alphabet(s). My TAB Auto-Fills when there is no other file/directory starting with that alphabet(s). My issue is, when there is more than one match, hitting TAB "twice", does not list file/directory names starting with that alphabet(s) so that I can type few more characters to get file/directory name that I want. Should I add anything to .cshrc so that hitting TAB "twice", will list file/directory names? Mine is C-Shell.

Thanks,
Venu.

---------- Post updated at 10:53 PM ---------- Previous update was at 10:48 PM ----------

Just got an answer from an old thread....


in ~/.cshrc put
set filec
set autolist


you may also like:
set nobeep

Thanks Forum!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Linux

/var getting fill frequently

I have Red hat Linux server. There are 14 NFS shares which are coming from NAS. There are so many messages filling /var/log/messages, which seems like some NFS logging is enables somewhere, but I am not able to figure it out. Every few minutes, it will filll my /var (which is part of root) to 100%... (2 Replies)
Discussion started by: solaris_1977
2 Replies

2. Solaris

Solaris how to enable auto tab key?

Hi, On Solaris 10, how do I enable the auto tab key? For example, on the Linux, I can type few letters and press the tab key. How do I do the same on Solaris? Thanks. (2 Replies)
Discussion started by: samnyc
2 Replies

3. Shell Programming and Scripting

Mac script - issue with tab delimited input file

Hi: I'm writing a script that will take source / destination pathnames and metadata information from a tab-delimited input file, and then perform various directory creation, file moving and renaming, and tagging of files. I think I have what I need to do the file manipulation in the script -... (4 Replies)
Discussion started by: GRIMESPACE
4 Replies

4. Shell Programming and Scripting

issue while auto login using .ssh for HPUX

Hi, While trying to supress password prompt using ssh. I have added .ssh folder manually and generated public key and added to authorized_keys file in the remote machine. But still it's prompting for passwords with the following message: Permission denied... (5 Replies)
Discussion started by: 116@434
5 Replies

5. Ubuntu

cron-tab issue(Task scheduling)

I used the cron-tab to run the rails's server 24 hours for my application by issuing the following command in terminal crontab -3(To open the cron-tab terminal) and then * * * * * OSV/OpenStreetView/script/server Similarly i tried to run server for the django application by issuing the... (2 Replies)
Discussion started by: amritpalpathak
2 Replies

6. Shell Programming and Scripting

Fill the directory

HI all When i do df -h,it displays the amount of free space. Tell me a command or a script to fill the total space to a certain percent (say 99%) Thanks in advance (8 Replies)
Discussion started by: 2002anand
8 Replies

7. Shell Programming and Scripting

Zero fill a string

How do I zero fill a string. E.g pad a string to two digits m=`date "+%m"` pm=`expr $m - 1` echo $pm the above code echoes 1. I want it to echo 01. Any ideas? (3 Replies)
Discussion started by: timgolding
3 Replies

8. UNIX for Dummies Questions & Answers

Fill in columns

Hi, I've got a file with several columns where some entries are missing. Example: a b c d f g h j k l p y r I need to replace the empty spaces with zero, so the new file would be: a b c d f 0 g h j k 0 l p y 0 r The original file is tab delimited. Many thansk for... (3 Replies)
Discussion started by: zajtat
3 Replies

9. Solaris

Esc key/Auto-fill

I'm an HPUX/Linux guy, who appreciates occasionally hitting the Esc key for Auto-fill... Does sunOS have anything like this? This is my 1st post, and I didn't want to waste it :D thanks, manuel (3 Replies)
Discussion started by: mr_manny
3 Replies
Login or Register to Ask a Question
Locale::Maketext::Lexicon::Auto(3pm)			User Contributed Perl Documentation		      Locale::Maketext::Lexicon::Auto(3pm)

NAME
Locale::Maketext::Lexicon::Auto - Auto fallback lexicon for Maketext SYNOPSIS
package Hello::I18N; use base 'Locale::Maketext'; use Locale::Maketext::Lexicon { en => ['Auto'], # ... other languages }; DESCRIPTION
This module builds a simple Lexicon hash that contains nothing but "( '_AUTO' => 1)", which tells "Locale::Maketext" that no localizing is needed -- just use the lookup key as the returned string. It is especially useful if you're starting to prototype a program, and do not want to deal with the localization files yet. CAVEATS
If the key to "->maketext" begins with a "_", "Locale::Maketext" will still throw an exception. See "CONTROLLING LOOKUP FAILURE" in Locale::Maketext for how to prevent it. SEE ALSO
Locale::Maketext, Locale::Maketext::Lexicon AUTHORS
Audrey Tang <cpan@audreyt.org> COPYRIGHT
Copyright 2002, 2003, 2004, 2007 by Audrey Tang <cpan@audreyt.org>. This software is released under the MIT license cited below. The "MIT" License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. perl v5.14.2 2010-08-10 Locale::Maketext::Lexicon::Auto(3pm)