from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

82895

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->app-editors->VI

2. Commands



Below you will find a cheat-sheet with vi commands. This cheat sheet will also come in handy in the next section of this document,
Practice Lesson #1.



vi cheat-sheet


a. cursor movements (items below are sometimes called objects):
h - left one character
l - right one character
j - down one line
k - up one line
w - right one word
b - back one word
$ - to the end of line
0 - to the beginning of the line
) - right one sentence
( - left one sentence
} - right one paragraph
{ - left one paragraph
Ctrl-F - forward one page
Ctrl-B - back one page
G - go to (without arguments, go to end of file)
b. deleting:
d - delete
then add one of the cursor movement symbols to
show what should be deleted, i.e.:
d$ - delete to end of line
d0 - delete to the beginning of the line
d} - delete to the end of paragraph
dd - delete delete (delete the whole line)
x - delete character cursor is on
c. other basic commands:
r - replace one character
ZZ - save and exit (hold down shift and press "z" twice)
y - yank (copy into temporary buffer)
then add cursor movement symbol to show what should be
copied, for example: y) - copy to the end of sentence
Y - yank line cursor is on
p - paste below cursor line (deleted or copied text)
P - paste above cursor line
u - undo last editing command
/sometext - search for "sometext"

d. any command can take numeric argument before the name of "object", i.e.:
5dd - delete 5 lines beginning with cursor line (or) d5d - same
2dw - delete two words (or) d2w - delete two words
c3w - change 3 words
3Ctrl-B - move up three pages
1G - go to the first line
e. external commands can be performed on the selected text (in lines)
if command is started with "!", i.e.:
!}fmt - reformat paragraph to 72 columns
f. command line (sometimes called "ex mode"):
:
g. from the command line a "set" command can be executed to
customize editing environment, i.e.:
:set all - will show the state of all options
:set number - will show on the screen numbers of all lines
:set autoindent // obvious
h. from the command line operations can be performed on the range of lines,
i.e.:
:18,24 del - delete from line 18 to line 24
:23,48 copy 17 - block from line 23 to 48 copy to line 17
:2,17 move 92 - block from line 2 to 17 move to line 92
i. from the command line any external UNIX command can be performed on
the range of lines if line range is superseded by "!":
:11,16! sed -e "s/^//*/" -e "s/$/*//"

(the command above wraps the block of text with
"C" style comments - /* text */. It can be done
easier, but this is an example)
:14,19! sort -r +3
(sort the table in reverse order by fourth column)
j. file manipulation from the command line:
:r somefile - read in "somefile"
:x - save and exit (if file is "Read Only", this command will
exit without saving)
:wq - write and quit (same as above)
:w - write (save) if the file permissions allow it
:w! - save file even if it is read-only as long as we own it
:w somefile - save this file as "somefile"
:q - quit without saving
:q! - quit without saving if changes were made
k. text input commands (all require "Esc" to terminate):
i - insert text before the character cursor is on
I - insert text at the beginning of the line
a - append (insert text after the character cursor is on)
A - append text to the end of the line
c - change (replace previous text with new one)
takes arguments just like the delete command - it is
a fast and powerful way of changing original text -
much more so than typical "overwrite"

R - start overwriting text
o - start entering text at the beginning of the new line
below the cursor
O - start entering text at the beginning of the new line
above the cursor
l. if in doubt, press "Esc"


/* The article above and any accompanying files are freely
* distributable, but please leave this notice and the text intact.
* Home for this document: http://www.infobound.com/vi.html
* Copyright (C) 1994, 1999 Tony Thomas
* Contact author through email:
tony@infobound.com
* Last revision Feb 23, 1999
* UNIX is a trademark of X/Open
*/

rate this article:
current rating: average rating: 1.2 (26 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-01-21
apprise - 1.9.7
Ebuild name:

dev-python/apprise-1.9.7

Description

Push Notifications that work with just about every platform

Added to portage

2026-01-21

asciinema - 3.1.0
Ebuild name:

app-misc/asciinema-3.1.0

Description

Terminal session recorder, streamer, and player

Added to portage

2026-01-21

awscli - 1.44.21
Ebuild name:

app-admin/awscli-1.44.21

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-21

biboumi - 10.0_pre20260110
Ebuild name:

net-im/biboumi-10.0_pre20260110

Description

XMPP gateway to IRC

Added to portage

2026-01-21

boto3 - 1.42.31
Ebuild name:

dev-python/boto3-1.42.31

Description

The AWS SDK for Python

Added to portage

2026-01-21

botocore - 1.42.31
Ebuild name:

dev-python/botocore-1.42.31

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-21

caffe2 - 2.9.1-r3
Ebuild name:

sci-ml/caffe2-2.9.1-r3

Description

A deep learning framework

Added to portage

2026-01-21

clanbomber - 2.3_p20220703
Ebuild name:

games-action/clanbomber-2.3_p20220703

Description

Bomberman-like multiplayer game

Added to portage

2026-01-21

django-debug-toolbar - 6.2.0
Ebuild name:

dev-python/django-debug-toolbar-6.2.0

Description

A configurable set of panels that display various debug infor

Added to portage

2026-01-21

elementpath - 5.1.1
Ebuild name:

dev-python/elementpath-5.1.1

Description

XPath 1.0/2.0 parsers and selectors for ElementTree and lxml

Added to portage

2026-01-21

fastbencode - 0.3.9
Ebuild name:

dev-python/fastbencode-0.3.9

Description

Implementation of bencode with Rust implementation

Added to portage

2026-01-21

framework_tool - 0.5.0
Ebuild name:

app-laptop/framework_tool-0.5.0

Description

Tool to control Framework Computer systems

Added to portage

2026-01-21

gn - 0.2318
Ebuild name:

dev-build/gn-0.2318

Description

GN is a meta-build system that generates build files for Ninja

Added to portage

2026-01-21

hackrf-tools - 2026.01.2
Ebuild name:

net-wireless/hackrf-tools-2026.01.2

Description

tools for communicating with HackRF SDR platform

Added to portage

2026-01-21

harfbuzz - 12.3.1
Ebuild name:

media-libs/harfbuzz-12.3.1

Description

An OpenType text shaping engine

Added to portage

2026-01-21

less - 691
Ebuild name:

sys-apps/less-691

Description

Excellent text file viewer

Added to portage

2026-01-21

libhackrf - 2026.01.2
Ebuild name:

net-libs/libhackrf-2026.01.2

Description

library for communicating with HackRF SDR platform

Added to portage

2026-01-21

mcelog - 210
Ebuild name:

app-admin/mcelog-210

Description

A tool to log and decode Machine Check Exceptions

Added to portage

2026-01-21

mysql - 8.0.45
Ebuild name:

dev-db/mysql-8.0.45

Description

A fast, multi-threaded, multi-user SQL database server

Added to portage

2026-01-21

mysql - 8.4.8
Ebuild name:

dev-db/mysql-8.4.8

Description

Fast, multi-threaded, multi-user SQL database server

Added to portage

2026-01-21

openpgp-keys-dshaw - 20260121
Ebuild name:

sec-keys/openpgp-keys-dshaw-20260121

Description

OpenPGP key used by David Shaw

Added to portage

2026-01-21

openpgp-keys-inetutils - 20260120
Ebuild name:

sec-keys/openpgp-keys-inetutils-20260120

Description

OpenPGP keys used for net-misc/inetutils

Added to portage

2026-01-21

openpgp-keys-libssh - 20260121
Ebuild name:

sec-keys/openpgp-keys-libssh-20260121

Description

OpenPGP key used by net-libs/libssh

Added to portage

2026-01-21

openpgp-keys-martinlambers - 20260120
Ebuild name:

sec-keys/openpgp-keys-martinlambers-20260120

Description

OpenPGP key used by Martin Lambers

Added to portage

2026-01-21

openpgp-keys-milanbroz - 20260121
Ebuild name:

sec-keys/openpgp-keys-milanbroz-20260121

Description

OpenPGP key used by Milan Broz

Added to portage

2026-01-21

openpgp-keys-mysql - 20250120
Ebuild name:

sec-keys/openpgp-keys-mysql-20250120

Description

OpenPGP keys used to sign MySQL releases

Added to portage

2026-01-21

openpgp-keys-p11-kit - 20260120
Ebuild name:

sec-keys/openpgp-keys-p11-kit-20260120

Description

OpenPGP key used to sign p11-kit releases

Added to portage

2026-01-21

openpgp-keys-stewartsmith - 20260121
Ebuild name:

sec-keys/openpgp-keys-stewartsmith-20260121

Description

OpenPGP key used by Stewart Smith

Added to portage

2026-01-21

openpgp-keys-stunnel - 20260120
Ebuild name:

sec-keys/openpgp-keys-stunnel-20260120

Description

OpenPGP key used by stunnel

Added to portage

2026-01-21

openpgp-keys-wernerlemberg - 20260121
Ebuild name:

sec-keys/openpgp-keys-wernerlemberg-20260121

Description

OpenPGP key used by Werner Lemberg (wl)

Added to portage

2026-01-21

openpgp-keys-zstd - 20260121
Ebuild name:

sec-keys/openpgp-keys-zstd-20260121

Description

OpenPGP key used by app-arch/zstd

Added to portage

2026-01-21

paredit - 26-r1
Ebuild name:

app-emacs/paredit-26-r1

Description

Minor mode for performing structured editing of S-expressions

Added to portage

2026-01-21

pariemacs - 3.14-r1
Ebuild name:

app-emacs/pariemacs-3.14-r1

Description

sci-mathematics/pari emacs mode

Added to portage

2026-01-21

parsebib - 6.7
Ebuild name:

app-emacs/parsebib-6.7

Description

Emacs Lisp library for reading .bib files

Added to portage

2026-01-21

parseclj - 1.1.1
Ebuild name:

app-emacs/parseclj-1.1.1

Description

Clojure Parser for Emacs Lisp

Added to portage

2026-01-21

pass - 1.7.4-r3
Ebuild name:

app-admin/pass-1.7.4-r3

Description

Stores, retrieves, generates, and synchronizes passwords securely

Added to portage

2026-01-21

pass - 2.0_p20260109
Ebuild name:

app-emacs/pass-2.0_p20260109

Description

Major mode for password-store

Added to portage

2026-01-21

password-store-otp - 0.1.5
Ebuild name:

app-emacs/password-store-otp-0.1.5

Description

Major mode for password-store

Added to portage

2026-01-21

php - 8.3.30
Ebuild name:

dev-lang/php-8.3.30

Description

The PHP language runtime engine

Added to portage

2026-01-21

php - 8.4.17
Ebuild name:

dev-lang/php-8.4.17

Description

The PHP language runtime engine

Added to portage

2026-01-21

poetry - 2.3.1
Ebuild name:

dev-python/poetry-2.3.1

Description

A frontend for poetry - a python dependency management and packaging tool

Added to portage

2026-01-21

pyparsing - 3.3.2
Ebuild name:

dev-python/pyparsing-3.3.2

Description

Easy-to-use Python module for text parsing

Added to portage

2026-01-21

pytokens - 0.4.0-r1
Ebuild name:

dev-python/pytokens-0.4.0-r1

Description

A fast, spec compliant Python 3.13+ tokenizer that runs on older Pytho

Added to portage

2026-01-21

qbittorrent - 5.0.5-r1
Ebuild name:

net-p2p/qbittorrent-5.0.5-r1

Description

BitTorrent client in C++ and Qt

Added to portage

2026-01-21

qbittorrent - 5.1.2-r1
Ebuild name:

net-p2p/qbittorrent-5.1.2-r1

Description

BitTorrent client in C++ and Qt

Added to portage

2026-01-21

sarge - 0.1.8
Ebuild name:

dev-python/sarge-0.1.8

Description

Wrapper for subprocess which provides command pipeline functionality

Added to portage

2026-01-21

soupsieve - 2.8.3
Ebuild name:

dev-python/soupsieve-2.8.3

Description

A modern CSS selector implementation for BeautifulSoup

Added to portage

2026-01-21

sslscan - 2.2.1
Ebuild name:

net-analyzer/sslscan-2.2.1

Description

Fast SSL configuration scanner

Added to portage

2026-01-21

tomcat-native - 1.3.5
Ebuild name:

dev-java/tomcat-native-1.3.5

Description

Allows Tomcat to use certain native resources for better performance

Added to portage

2026-01-21

xkcdpass - 1.30.0
Ebuild name:

app-admin/xkcdpass-1.30.0

Description

Password generator inspired by XKCD 936

Added to portage

2026-01-21

2026-01-20
amq-protocol - 2.5.1
Ebuild name:

dev-ruby/amq-protocol-2.5.1

Description

An AMQP 0.9.1 serialization library for Ruby

Added to portage

2026-01-20

aws-sdk-cpp - 1.11.686-r1
Ebuild name:

dev-cpp/aws-sdk-cpp-1.11.686-r1

Description

AWS SDK for C++

Added to portage

2026-01-20

azure-core - 1.16.2
Ebuild name:

dev-cpp/azure-core-1.16.2

Description

Azure SDK for C++

Added to portage

2026-01-20

azure-identity - 1.13.3
Ebuild name:

dev-cpp/azure-identity-1.13.3

Description

Azure SDK for C++

Added to portage

2026-01-20

blessed - 1.27.0
Ebuild name:

dev-python/blessed-1.27.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-01-20

busybox - 1.37.0
Ebuild name:

sys-apps/busybox-1.37.0

Description

Utilities for rescue and embedded systems

Added to portage

2026-01-20

candy - 6.1.6
Ebuild name:

net-vpn/candy-6.1.6

Description

A reliable, low-latency, and anti-censorship virtual private network

Added to portage

2026-01-20

dist-kernel - 5.10.248
Ebuild name:

virtual/dist-kernel-5.10.248

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-20

dist-kernel - 5.15.198
Ebuild name:

virtual/dist-kernel-5.15.198

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-20

dist-kernel - 6.1.161
Ebuild name:

virtual/dist-kernel-6.1.161

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-20

django-polymorphic - 4.10.4
Ebuild name:

dev-python/django-polymorphic-4.10.4

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-01-20

fido2 - 2.1.1
Ebuild name:

dev-python/fido2-2.1.1

Description

Python based FIDO 2.0 library

Added to portage

2026-01-20

freerdp - 3.21.0
Ebuild name:

net-misc/freerdp-3.21.0

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-01-20

gentoo-kernel - 5.10.248
Ebuild name:

sys-kernel/gentoo-kernel-5.10.248

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-20

gentoo-kernel - 5.15.198
Ebuild name:

sys-kernel/gentoo-kernel-5.15.198

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-20

gentoo-kernel - 6.1.161
Ebuild name:

sys-kernel/gentoo-kernel-6.1.161

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-20

gentoo-kernel-bin - 5.10.248
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.248

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-20

gentoo-kernel-bin - 5.15.198
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.198

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-20

gentoo-kernel-bin - 6.1.161
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.161

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-20

gentoo-sources - 5.15.198
Ebuild name:

sys-kernel/gentoo-sources-5.15.198

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-20

gentoo-sources - 6.1.161
Ebuild name:

sys-kernel/gentoo-sources-6.1.161

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-20

gentoo-sources - 6.12.66
Ebuild name:

sys-kernel/gentoo-sources-6.12.66

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-20

gentoo-sources - 6.18.6
Ebuild name:

sys-kernel/gentoo-sources-6.18.6

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-20

gentoo-sources - 6.6.121
Ebuild name:

sys-kernel/gentoo-sources-6.6.121

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-20

git - 4.3.0
Ebuild name:

dev-ruby/git-4.3.0

Description

Library for using Git in Ruby

Added to portage

2026-01-20

glm - 1.0.2
Ebuild name:

media-libs/glm-1.0.2

Description

OpenGL Mathematics

Added to portage

2026-01-20

gnucash - 5.14
Ebuild name:

app-office/gnucash-5.14

Description

Personal finance manager

Added to portage

2026-01-20

gopls - 0.21.0
Ebuild name:

dev-go/gopls-0.21.0

Description

Added to portage

2026-01-20

inetutils - 2.7
Ebuild name:

net-misc/inetutils-2.7

Description

Collection of common network programs

Added to portage

2026-01-20

isort - 7.0.0-r1
Ebuild name:

dev-python/isort-7.0.0-r1

Description

A python utility/library to sort imports

Added to portage

2026-01-20

jellyfin-bin - 10.11.6
Ebuild name:

www-apps/jellyfin-bin-10.11.6

Description

Jellyfin puts you in control of managing and streaming your media

Added to portage

2026-01-20

keystoneauth1 - 5.13.0
Ebuild name:

dev-python/keystoneauth1-5.13.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-01-20

kramdown - 2.5.2
Ebuild name:

dev-ruby/kramdown-2.5.2

Description

Yet-another-markdown-parser but fast, pure Ruby, using strict syntax defini

Added to portage

2026-01-20

libfilezilla - 0.54.0
Ebuild name:

dev-libs/libfilezilla-0.54.0

Description

C++ library offering some basic functionality for platform-independent

Added to portage

2026-01-20

mattermost-desktop-bin - 6.0.4
Ebuild name:

net-im/mattermost-desktop-bin-6.0.4

Description

Mattermost Desktop application

Added to portage

2026-01-20

mkdocstrings - 1.0.1
Ebuild name:

dev-python/mkdocstrings-1.0.1

Description

Automatic documentation from sources, for MkDocs

Added to portage

2026-01-20

multiprocess - 0.70.19
Ebuild name:

dev-python/multiprocess-0.70.19

Description

Better multiprocessing and multithreading in Python

Added to portage

2026-01-20

nagios-plugins - 2.4.12-r4
Ebuild name:

net-analyzer/nagios-plugins-2.4.12-r4

Description

Official plugins for Nagios

Added to portage

2026-01-20

nushell - 0.110.0
Ebuild name:

app-shells/nushell-0.110.0

Description

A new type of shell, written in Rust

Added to portage

2026-01-20

openhab-bin - 5.1.1
Ebuild name:

app-misc/openhab-bin-5.1.1

Description

An open-source automation software for your home

Added to portage

2026-01-20

openpgp-keys-martinmares - 20260120
Ebuild name:

sec-keys/openpgp-keys-martinmares-20260120

Description

OpenPGP key used by Martin Mareš

Added to portage

2026-01-20

openpgp-keys-pevik - 20260120
Ebuild name:

sec-keys/openpgp-keys-pevik-20260120

Description

OpenPGP key used by Petr Vorel (pevik)

Added to portage

2026-01-20

openstacksdk - 4.9.0
Ebuild name:

dev-python/openstacksdk-4.9.0

Description

A collection of libraries for building applications to work with Open

Added to portage

2026-01-20

pidgin-led-notification - 0.1-r3
Ebuild name:

x11-plugins/pidgin-led-notification-0.1-r3

Description

Pidgin plugin to notify by writing user defined strings

Added to portage

2026-01-20

pixi - 0.63.2
Ebuild name:

dev-util/pixi-0.63.2

Description

A package management and workflow tool

Added to portage

2026-01-20

pylast - 7.0.2
Ebuild name:

dev-python/pylast-7.0.2

Description

Python interface to last.fm and other api-compatible websites

Added to portage

2026-01-20

pylint - 4.0.4-r1
Ebuild name:

dev-python/pylint-4.0.4-r1

Description

Python code static checker

Added to portage

2026-01-20

qpdf - 12.3.1
Ebuild name:

app-text/qpdf-12.3.1

Description

Command-line tool for structural, content-preserving transformation of PDF fil

Added to portage

2026-01-20

selenium-webdriver - 4.40.0
Ebuild name:

dev-ruby/selenium-webdriver-4.40.0

Description

This gem provides Ruby bindings for WebDriver

Added to portage

2026-01-20

shadow - 4.19.2
Ebuild name:

sys-apps/shadow-4.19.2

Description

Utilities to deal with user accounts

Added to portage

2026-01-20

stalwart-cli - 0.15.4
Ebuild name:

net-mail/stalwart-cli-0.15.4

Description

Stalwart Mail Server command line utility

Added to portage

2026-01-20

stalwart-mail - 0.15.4
Ebuild name:

net-mail/stalwart-mail-0.15.4

Description

Stalwart Mail Server

Added to portage

2026-01-20

stestr - 4.2.0-r1
Ebuild name:

dev-python/stestr-4.2.0-r1

Description

A parallel Python test runner built around subunit

Added to portage

2026-01-20

vanilla-kernel - 5.10.248
Ebuild name:

sys-kernel/vanilla-kernel-5.10.248

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-20

vanilla-kernel - 5.15.198
Ebuild name:

sys-kernel/vanilla-kernel-5.15.198

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-20

vanilla-kernel - 6.1.161
Ebuild name:

sys-kernel/vanilla-kernel-6.1.161

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-20

vanilla-sources - 5.10.248
Ebuild name:

sys-kernel/vanilla-sources-5.10.248

Description

Full sources for the Linux kernel

Added to portage

2026-01-20

vanilla-sources - 5.15.198
Ebuild name:

sys-kernel/vanilla-sources-5.15.198

Description

Full sources for the Linux kernel

Added to portage

2026-01-20

vanilla-sources - 6.1.161
Ebuild name:

sys-kernel/vanilla-sources-6.1.161

Description

Full sources for the Linux kernel

Added to portage

2026-01-20

vanilla-sources - 6.12.66
Ebuild name:

sys-kernel/vanilla-sources-6.12.66

Description

Full sources for the Linux kernel

Added to portage

2026-01-20

vanilla-sources - 6.18.6
Ebuild name:

sys-kernel/vanilla-sources-6.18.6

Description

Full sources for the Linux kernel

Added to portage

2026-01-20

vanilla-sources - 6.6.121
Ebuild name:

sys-kernel/vanilla-sources-6.6.121

Description

Full sources for the Linux kernel

Added to portage

2026-01-20

weasyprint - 68.0
Ebuild name:

dev-python/weasyprint-68.0

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2026-01-20

wesnoth - 1.18.6
Ebuild name:

games-strategy/wesnoth-1.18.6

Description

Battle for Wesnoth - A fantasy turn-based strategy game

Added to portage

2026-01-20

wesnoth - 1.19.19
Ebuild name:

games-strategy/wesnoth-1.19.19

Description

Battle for Wesnoth - A fantasy turn-based strategy game

Added to portage

2026-01-20

winbox - 4.0_beta47
Ebuild name:

app-admin/winbox-4.0_beta47

Description

Management Software for MikroTik RouterOS

Added to portage

2026-01-20

zellij - 0.43.1-r1
Ebuild name:

app-misc/zellij-0.43.1-r1

Description

A terminal workspace with batteries included

Added to portage

2026-01-20

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 72.7 ms