Cp command autocomplete


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Cp command autocomplete
# 1  
Old 07-20-2016
Cp command autocomplete

Hi

I'm still new around bash and Ubuntu, but I was expecting for the "cp" command to have an autocomplete feature like the ls command. Should it, or I'm assuming too much?

In case it doesn't have by default, is there a way to enable it?

Cheers
# 2  
Old 07-20-2016
You mean when you type it in the shell? Then it's the shell's autocompletion, that should work for all commands.
Your default shell can be obtained by
Code:
echo $SHELL

And the following command shows where it comes from
Code:
getent passwd $USER

This User Gave Thanks to MadeInGermany For This Post:
# 3  
Old 07-20-2016
Never mind, lol... My fault as I was not using it correctly Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Tcsh complete (autocomplete) script

I cant figure out how the complete function works in tcsh. 1. I whould like it to complete after writing my_program.py with either start or stop. I have tried to do something like this in .cshrc.user: complete my_program.py \ 'c/start/' \ 'c/stop/' However i cant get it to... (1 Reply)
Discussion started by: mr_cad
1 Replies

2. UNIX for Dummies Questions & Answers

passing command output from one command to the next command in cshell

HI Guys, I hope you are well. I am trying to write a script that gets executed every time i open a shell (cshell). I have two questions about that 1) I need to enter these commands $ echo $DISPLAY $ setenv $DISPLAY output_of_echo_$display_command How can i write a... (2 Replies)
Discussion started by: kaaliakahn
2 Replies

3. Solaris

autocomplete Path on UNIX (TRU64)

Hi, i need autocmplete file_name/dir_name by TAB key. I work on UNIX (TRU64) and I just tried to type on .profile this setting: set autolist but it doesn't work. I think it is because this command doesn't belong to this UNIX version (sure it works for example on HP-UX). I need to set it... (0 Replies)
Discussion started by: D4vid
0 Replies

4. Shell Programming and Scripting

Need help! command working ok when executed in command line, but fails when run inside a script!

Hi everyone, when executing this command in unix: echo "WM7 Fatal Alerts:", $(cat query1.txt) > a.csvIt works fine, but running this command in a shell script gives an error saying that there's a syntax error. here is content of my script: tdbsrvr$ vi hc.sh "hc.sh" 22 lines, 509... (4 Replies)
Discussion started by: 4dirk1
4 Replies

5. UNIX for Dummies Questions & Answers

VIM, autocomplete before a word

Hi there, I'm learning PHP now. $var_name is how to declare a variable. I was wondering if there is any convenient way in vim to autocomplete the dollar sign($) before a word. Something like, after typing var_name, then press some key, for example Tab, to automatically add a doller sign... (4 Replies)
Discussion started by: hz_i3
4 Replies

6. Shell Programming and Scripting

Shell Path Autocomplete w/ Variables

Suppose there exists a file, "/home/andrew/product/test". And suppose I set $FOO to "/home/andrew/product/"? I can't seem to type "$FOO/t" and then Escape (csh) in order to autocomplete. Is this possible in other shells? If not, then why? If so, then why can't csh do it, and how can I make... (1 Reply)
Discussion started by: acheong87
1 Replies

7. UNIX for Dummies Questions & Answers

How to configure the AutoComplete Command

Hello All, I'm using the Solaris 8 and I'd like to know how to configure my KSH to use the double ESC to complete the command automatically. Do you know how do it?? thanks. rgs, Paulo (1 Reply)
Discussion started by: PAulo Trombetta
1 Replies

8. UNIX for Dummies Questions & Answers

ksh autocomplete; f-secure/ssh character mapping

I'm coming from a c-shell environment where I was spoiled with the tab completion on the command line, only to find that using korn-shell I don't have this capability. The only thing I can find by googling is to use 'set filec' - but that doesn't work (and I think is only for c-shell anyway). ... (0 Replies)
Discussion started by: uacheesehead
0 Replies

9. Shell Programming and Scripting

History and AutoComplete

Hi, I enabled the Autocomplete of filename by the command set -o emacs But i couldn't enjoy the benifits of vi anymore. i.e I couldn't get the command history by pressing Esc and k. How to enjoy both of this features at a time.? Regards Karthik (3 Replies)
Discussion started by: fermisoft
3 Replies

10. Linux

autocomplete - bash

Hi all I have installed Red Hat Linux Advanced Server 2.1 onto a Proliant DL580 (dual XEON 2.8GHz processors). The bash shell is not autocompleting filenames/directorynames when I hit escape twice. History (via Ctrl+r works). Is there a setting somewhere to enable this? Thanks. (2 Replies)
Discussion started by: saabir
2 Replies
Login or Register to Ask a Question