Sponsored Content
Full Discussion: The > symbol
Top Forums UNIX for Dummies Questions & Answers The > symbol Post 302076400 by tayyabq8 on Tuesday 13th of June 2006 12:20:02 AM
Old 06-13-2006
Try Delete key or Ctrl+C or Ctrl + z to come out of that command and bring your prompt back.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

unresolved symbol ???

when I make ncftp 111.111.1.2 I just get problems like ... /usr/lib/dld.sl unresolved symbol:inet_ntop (code) does anybody know what is the problem and how to solve this? thx.. (2 Replies)
Discussion started by: svennie
2 Replies

2. Programming

no symbol table

Hi@all, I try to compile c code on hpux 11.11 pa-risc 2 with gcc (32bit). I compile with the option -g, so that I get the symbol table, but it is not available. Does someone knows something on this? thx (2 Replies)
Discussion started by: Dom_Cyrus
2 Replies

3. Shell Programming and Scripting

Append with TM symbol

I have a file with delimiter ";" and 2 columns for eg: Transparent; ScotchPro™ If you see carefully you can see a special character "TM" at the end of data which is not showing up when I read the data in a regular sequential file. Did anyone anytime tackle this kind of Data. Please advice.... (1 Reply)
Discussion started by: ganesh123
1 Replies

4. Solaris

/usr/lib/passwdutil.so.1: symbol __nsl_fgetspent_r: referenced symbol not found

deleteing post (0 Replies)
Discussion started by: dshakey
0 Replies

5. Shell Programming and Scripting

Symbol reference

Hi, test -d .ssh || mkdir .ssh && chmod 700 .ssh The command has couple of symbols, could someone redirect me to the link, where i can understand their significance. Thanks, John (1 Reply)
Discussion started by: john_prince
1 Replies

6. Shell Programming and Scripting

Words after / symbol

Hi, I have the following directory: /home/dragon/websphere/cells/profile/imp/001/ I want to put this in a shell script and get the values before and after cells by removing the '/' Any idea how to make this possible? Regards, Dinesh (6 Replies)
Discussion started by: dbashyam
6 Replies

7. UNIX for Dummies Questions & Answers

caret symbol

Hi! I need to know where is the caret symbol (^) on the keyboard. I press Shift+6 and does not appear!! Thank you very much. Removed email address - all should benefit of an answer. (1 Reply)
Discussion started by: labultet
1 Replies

8. Programming

Undefined Symbol

When I try to link a .so file I get the undefined symbol error. Though I have the library file in my system. The compile and linking commands used are as follows g++ -m64 -g -Wall -I./include -c dxl_sample.c g++ -o firstprogram -m64 -g -Wall -I./include -Bdynamic... (1 Reply)
Discussion started by: Ranadeep Ghosal
1 Replies

9. UNIX for Advanced & Expert Users

Undefined Symbol

When I try to link a .so file I get the undefined symbol error. Though I have the library file in my system. The compile and linking commands used are as follows g++ -m64 -g -Wall -I./include -c dxl_sample.c g++ -o firstprogram -m64 -g -Wall -I./include -Bdynamic... (1 Reply)
Discussion started by: Ranadeep Ghosal
1 Replies

10. Shell Programming and Scripting

On £ symbol

Hi All, How do i represent £ symbol in unix and how to retain £ symbol in file. Thanks in Advance (3 Replies)
Discussion started by: HemaV
3 Replies
FvwmConsoleC.pl(1)						   Fvwm Modules 						FvwmConsoleC.pl(1)

NAME
FvwmConsoleC.pl - Command editor for fvwm command input interface SYNOPSIS
FvwmConsole -e /usr/X11/lib/fvwm/FvwmConsoleC.pl COPYRIGHT
Copyright 1996, Toshi Isogai. No guarantees or warranties are provided. Use this program at your own risk. Permission to use this program for any purpose is given, as long as the copyright is kept intact. DESCRIPTION
FvwmConsoleC.pl offers editing capabilities while the user is entering the line. By default, the line editing commands are similar to those of emacs. It also offers substitution , which replaces a pattern to a string before it sends the command. FUNCTIONS
Functions are bound to a key or key combination to be invoked. The followings are functions available and their default key bindings. bind Meta-k, Ctrl-x Ctrl-b List up key bindings and substitutions. boh Move to the beginning of history. boh_ign_mode Esc-< Move to the beginning of history. If it is in search mode, continue. bol Home, Ctrl-a Move cursor to the beginning of the line. bs[(n)] BackSpace, Ctrl-h Backspace n times. default of n is 1. cancel Ctrl-x Ctrl-k Cancel the current input. del_back_line Delete the line from the beginning to the cursor. del_back_word Ctrl-w Delete the word from the beginning to the cursor. del_char [(n)] Delete, Ctrl-d Delete n characters from the cursor to the right. Default of n is 1. del_forw_line Ctrl-k Delete the line from the cursor to the end. del_forw_word Meta-d Delete the word from the cursor to the end. del_line Ctrl-u Delete the entire line. enter Enter, Ctrl-j, Ctrl-m Perform substitution if applicable and send the line to fvwm. enter_wo_subst Meta-Enter Send the line to fvwm without any substitution. eoh Move to the end of history. eoh_ign_mode Esc-> Move to the end of history. If it is in search mode, continue. eol End, Ctrl-e Move the cursor to the end of line. ins_char (str) Insert string at the cursor. ins_last_word Esc-. Insert the last argument of the previous command at the cursor. ins_nth_word Meta-[1..9] Insert the n-th argument of the previous command at the cursor. list_func Meta-l List up available editing functions. next_char Right, Ctrl-f Move the cursor to the next character. next_line Down, Ctrl-n Move to the next line in history. next_word Meta-f Move the cursor to the next word. prefix Wait for the next character typed in for multi-key binding. prev_char Left, Ctrl-b Move the cursor to the previous character. prev_line Up, Ctrl-p Move to the previous line in history. prev_word Meta-b Move the cursor to the previous word. quote Ctrl-q Insert the next character typed into the buffer literally. search Ctrl-s Search pattern in history. search_rev Ctrl-r Search pattern in history in reverse order. subst Meta-s Substitute all patterns to strings and reprint the line. The substitutions are not nested and performed in the order that they are defined. CONFIGURATION
The key binding can be overridden or defined in fvwm module configuration. *FvwmConsole: Key ck prev_line Non-space character sequence need not be quoted. In order to undefine, omit the last argument. *FvwmConsole: Key ck Note that non-meta character is case sensitive. c means control key, e means escape, and m is alt key. It also accepts Subst configuration. Users often input long fvwm command repeatedly. Subst will replace particular input sequence to user defined string. Example: *FvwmConsole: Subst '^bigx' 'Exec xterm -g 120x60+0+0 -fn 10x20 -fg black -bg lemonchiffon' Typing 'bigx<return>' in FvwmConsole will launch xterm. '^' denotes the beginning of line in regular expression. 'pl' in the middle of the command will not be replaced. Although the format looks different, it takes Perl regular expression. It just uses single or double quote as the delimiter. Single or double quotes have no difference, although they have to match, and cannot include itself in the string. *FvwmConsole: Subst '^gs*(d+)' 'Desk 0 0 GotoPage 0 $1 Focus' Entering 'g4' or 'g 4' will jump to desk 0 page 0 4 and focus. INVOCATION
FvwmConsoleC.pl should be invoked by FvwmConsole. SEE ALSO
FvwmConsole(1x), perlre(1) AUTHOR
Toshi Isogai 3rd Berkeley Distribution 09 May 2010 (2.5.30) FvwmConsoleC.pl(1)
All times are GMT -4. The time now is 11:57 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy