<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://dreness.com/wikimedia/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=83.224.64.4</id>
		<title>Wikifications - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://dreness.com/wikimedia/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=83.224.64.4"/>
		<link rel="alternate" type="text/html" href="https://dreness.com/wikimedia/index.php?title=Special:Contributions/83.224.64.4"/>
		<updated>2026-05-23T15:07:20Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.3</generator>

	<entry>
		<id>https://dreness.com/wikimedia/index.php?title=Screen&amp;diff=1173</id>
		<title>Screen</title>
		<link rel="alternate" type="text/html" href="https://dreness.com/wikimedia/index.php?title=Screen&amp;diff=1173"/>
				<updated>2007-06-11T06:37:06Z</updated>
		
		<summary type="html">&lt;p&gt;83.224.64.4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Basics ===&lt;br /&gt;
&lt;br /&gt;
Control-a (C-a) is screen attention sequence and preceeds all screen commands. For example, to create a new screen window, type control-a, then c. To clarify even further: hold control, type a, release control, press c.&lt;br /&gt;
&lt;br /&gt;
 c         = new window&lt;br /&gt;
 k         = kill current window&lt;br /&gt;
 d         = detach from screen&lt;br /&gt;
 ?         = show online help&lt;br /&gt;
&lt;br /&gt;
From outside of the screen session:&lt;br /&gt;
 screen -R = reattach&lt;br /&gt;
 screen -x = multi-attach&lt;br /&gt;
&lt;br /&gt;
=== caption and hardstatus ===&lt;br /&gt;
I use the following with Terminal&amp;#039;s color scheme set to green on black:&lt;br /&gt;
 caption always &amp;quot;%{Mk}%?%-Lw%?%{km}[%n*%f %t]%?(%u)%?%{mk}%?% Lw%? %{mk}&amp;quot;&lt;br /&gt;
 hardstatus alwayslastline &amp;quot;%{kW}%H %{kB}|%{km} %l %=%{km}%c:%s %D %M/%d/%Y &amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Navigation ===&lt;br /&gt;
 &amp;quot;         = list window names, numbers, and flags&lt;br /&gt;
 N         = show current window number&lt;br /&gt;
 A         = set window name&lt;br /&gt;
 &amp;#039;         = specify name or number to switch to&lt;br /&gt;
 space     = next window&lt;br /&gt;
 backspace = prev window&lt;br /&gt;
 #         = goto window number #&lt;br /&gt;
 w         = show window list in status bar&lt;br /&gt;
 C-a       = switch to most recent window&lt;br /&gt;
&lt;br /&gt;
=== Split Windows ===&lt;br /&gt;
 S         = create split in current region&lt;br /&gt;
 tab       = move to next region&lt;br /&gt;
 X         = delete current region&lt;br /&gt;
 Q         = delete all but current region&lt;br /&gt;
&lt;br /&gt;
=== Monitoring ===&lt;br /&gt;
 M         = toggle activity monitor notifications in status bar&lt;br /&gt;
 _         = toggle INactivity monitor notification in status bar (e.g. for when something&amp;#039;s done compiling)&lt;br /&gt;
 m         = recall last message displayed in status bar&lt;br /&gt;
 C-g       = toggle audio / visual bell&lt;br /&gt;
 t         = show time / load average&lt;br /&gt;
&lt;br /&gt;
=== Scrollback / copy mode movement keys ===&lt;br /&gt;
&lt;br /&gt;
 [       = enter copy mode&lt;br /&gt;
         h, j, k, l move the cursor line by line or column by column.&lt;br /&gt;
         0,  ^  and  $  move to the leftmost column, to the first or last non-&lt;br /&gt;
           whitespace character on the line.&lt;br /&gt;
         H, M and L move the cursor to the leftmost column of the top,  center&lt;br /&gt;
           or bottom line of the window.&lt;br /&gt;
           and - positions one line up and down.&lt;br /&gt;
         G moves to the specified absolute line (default: end of buffer).&lt;br /&gt;
         | moves to the specified absolute column.&lt;br /&gt;
         w, b, e move the cursor word by word.&lt;br /&gt;
         B, E move the cursor WORD by WORD (as in vi).&lt;br /&gt;
         C-u  and  C-d  scroll  the display up/down by the specified amount of&lt;br /&gt;
           lines while preserving the cursor position. (Default: half  screen-&lt;br /&gt;
           full).&lt;br /&gt;
         C-b and C-f scroll the display up/down a full screen.&lt;br /&gt;
         g moves to the beginning of the buffer.&lt;br /&gt;
         % jumps to the specified percentage of the buffer.&lt;br /&gt;
&lt;br /&gt;
===Pasteboard===&lt;br /&gt;
Read the /etc/passwd file into register p and paste it back out&lt;br /&gt;
 C-a : readreg p /etc/passwd&lt;br /&gt;
 C-a : paste p&lt;br /&gt;
&lt;br /&gt;
 Marking:&lt;br /&gt;
   The  copy range is specified by setting two marks. The text between&lt;br /&gt;
   these marks will be highlighted. Press&lt;br /&gt;
   space to set the first or second mark respectively.&lt;br /&gt;
   Y and y used to mark one whole line or to mark from start of line.&lt;br /&gt;
   W marks exactly one word.&lt;br /&gt;
 Repeat count:&lt;br /&gt;
   Any of these commands can be prefixed with a repeat count number by&lt;br /&gt;
   pressing digits 0..9 which is taken as a repeat count.&lt;br /&gt;
   Example:  &amp;quot;C-a  C-[  H  10 j 5 Y&amp;quot; will copy lines 11 to 15 into the&lt;br /&gt;
   paste buffer.&lt;br /&gt;
 Searching:&lt;br /&gt;
   / Vi-like search forward.&lt;br /&gt;
   ? Vi-like search backward.&lt;br /&gt;
   C-a s Emacs style incremental search forward.&lt;br /&gt;
   C-r Emacs style reverse i-search.&lt;br /&gt;
 Specials:&lt;br /&gt;
   There are however some keys that act differently than  in  vi.   Vi&lt;br /&gt;
   does  not  allow one to yank rectangular blocks of text, but screen&lt;br /&gt;
   does. Press c or C to set the left or right margin  respectively.  If  no  repeat&lt;br /&gt;
   count is given, both default to the current cursor position.&lt;br /&gt;
   Example: Try this on a rather full text screen: &amp;quot;C-a [ M 20 l SPACE&lt;br /&gt;
   c 10 l 5 j C SPACE&amp;quot;.&lt;br /&gt;
   This moves one to the middle line of the screen, moves in  20  col-&lt;br /&gt;
   umns  left,  marks the beginning of the paste buffer, sets the left&lt;br /&gt;
   column, moves 5 columns down, sets the right column, and then marks&lt;br /&gt;
   the end of the paste buffer. Now try:&lt;br /&gt;
   &amp;quot;C-a [ M 20 l SPACE 10 l 5 j SPACE&amp;quot;&lt;br /&gt;
   and notice the difference in the amount of text copied.&lt;br /&gt;
  J  joins lines. It toggles between 4 modes: lines separated by a new-&lt;br /&gt;
    line character (012), lines glued seamless, lines  separated  by  a&lt;br /&gt;
   single  whitespace  and  comma  separated  lines. Note that you can&lt;br /&gt;
   prepend the newline character with a carriage return character,  by&lt;br /&gt;
   issuing a &amp;quot;crlf on&amp;quot;.&lt;br /&gt;
  v  is  for all the vi users with &amp;quot;:set numbers&amp;quot; - it toggles the left&lt;br /&gt;
   margin between column 9 and 1. Press&lt;br /&gt;
   a before the final space key to toggle in append mode. Thus the  con-&lt;br /&gt;
   tents  of the paste buffer will not be overwritten, but is appended&lt;br /&gt;
   to.&lt;br /&gt;
  A toggles in append mode and sets a (second) mark.&lt;br /&gt;
   &amp;gt; sets the (second) mark and writes the contents of the paste  buffer&lt;br /&gt;
   to the screen-exchange file (/tmp/screen-exchange per default) once&lt;br /&gt;
   copy-mode is finished.&lt;br /&gt;
   This example demonstrates how to dump the whole  scrollback  buffer&lt;br /&gt;
   to that file: &amp;quot;C-A [ g SPACE G $ &amp;gt;&amp;quot;.&lt;br /&gt;
   C-g gives information about the current line and column.&lt;br /&gt;
  x  exchanges  the first mark and the current cursor position. You can&lt;br /&gt;
   use this to adjust an already placed mark.&lt;br /&gt;
  @ does nothing. Does not even exit copy mode.&lt;br /&gt;
   All keys not described here exit copy mode.&lt;br /&gt;
&lt;br /&gt;
=== Commands ===&lt;br /&gt;
&lt;br /&gt;
Commands can exist in .screenrc or can be entered interactively with C-a, :&lt;br /&gt;
&lt;br /&gt;
send the &amp;#039;whoami&amp;#039; command to all screen windows simultaneously (\015 is octal for carriage return)&lt;br /&gt;
 at \# stuff &amp;quot;whoami\015&amp;quot;&lt;br /&gt;
&lt;br /&gt;
back to [[Main Page]]&lt;/div&gt;</summary>
		<author><name>83.224.64.4</name></author>	</entry>

	</feed>