<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://tmade.de/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://tmade.de/wiki/feed.php">
        <title>IT Wiki</title>
        <description></description>
        <link>https://tmade.de/wiki/</link>
        <image rdf:resource="https://tmade.de/wiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-07-30T05:56:27+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?id=shell:if-for-while-function-variable&amp;rev=1785166466&amp;do=diff"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?id=linux:git&amp;rev=1784200183&amp;do=diff"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?id=linux:network&amp;rev=1782308311&amp;do=diff"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?id=linux:misc&amp;rev=1781255273&amp;do=diff"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?id=docker:openshift&amp;rev=1776179297&amp;do=diff"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?id=linux:vi&amp;rev=1775570922&amp;do=diff"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?image=iot%3Apasted%3A20240205-194239.png&amp;ns=iot%3Apasted&amp;rev=1707158559&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?image=playground%3Apasted%3A20230519-191639.png&amp;ns=playground%3Apasted&amp;rev=1684516599&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
                <rdf:li rdf:resource="https://tmade.de/wiki/doku.php?image=windows%3Apasted%3A20200226-102307.png&amp;ns=windows%3Apasted&amp;rev=1582708987&amp;tab_details=history&amp;media_do=diff&amp;do=media"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://tmade.de/wiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>IT Wiki</title>
        <link>https://tmade.de/wiki/</link>
        <url>https://tmade.de/wiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://tmade.de/wiki/doku.php?id=shell:if-for-while-function-variable&amp;rev=1785166466&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-07-27T15:34:26+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>if-for-while-function-variable - [While] </title>
        <link>https://tmade.de/wiki/doku.php?id=shell:if-for-while-function-variable&amp;rev=1785166466&amp;do=diff</link>
        <description>Home tmade.de

Home Wiki

Variabel
variabel=value
echo $variabel

Debug

Set
set -x
Unset
set +x

IF/ELSE

The “if” syntax is dependant on the kind of condition. Basically there are 3 types:
1. file
2. integer
3. string

File

Example “file”:


file=/test
if [  -e $file ]
then
echo &quot;$file exist.&quot;
else
echo &quot;$file does not exist.&quot;
fi</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?id=linux:git&amp;rev=1784200183&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-07-16T11:09:43+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>git - [Commands] </title>
        <link>https://tmade.de/wiki/doku.php?id=linux:git&amp;rev=1784200183&amp;do=diff</link>
        <description>Git

Installation

The git version control system is installed with the following command:
apt-get install git

Commands
git init                                                 #Initialize repository in actual working directory
git config --global user.email &quot;you@example.com&quot;         #set email
git config --global user.name &quot;Your Name&quot;                #Set your account&#039;s default identity                              # stored in ~home/&lt;username&gt;/.gitconfig 
git config user.name &quot;Your Name&quot;       …</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?id=linux:network&amp;rev=1782308311&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-24T13:38:31+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>network - [Test] </title>
        <link>https://tmade.de/wiki/doku.php?id=linux:network&amp;rev=1782308311&amp;do=diff</link>
        <description>Home tmade.de

Home Wiki

Network

Configure

Netzwerk/ IP change (opensuse /SLES):
/etc/sysconfig/network/ifcfg-eth0 
Commandline Configuration

Temporary networking modification via ifconfig/ route:
ifconfig eth0 172.22.49.127 netmask 255.255.255.0 
ifconfig eth0:0 192.168.0.5 netmask 255.255.255.0               #add temporary a 2nd ip-adress
ifconfig eth0:1 192.168.0.6 netmask 255.255.255.0               #add temporary a 3nd ip-adress
route add default gw 172.22.49.2
route del default gw 192.…</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?id=linux:misc&amp;rev=1781255273&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-06-12T09:07:53+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>misc - [Set variable] </title>
        <link>https://tmade.de/wiki/doku.php?id=linux:misc&amp;rev=1781255273&amp;do=diff</link>
        <description>MISC

Terminator

Personalized terminator settings: 
shift+F10                                                 #Preferences (if &quot;PuTTY style paste&quot; is active)
strg+shift+c                                              #copy
strg+alt+h                                                #split horizontally
strg+alt+v                                                #split vertically
strg+alt+m                                                #multiplex (groupalltoggle)
Terminator -&gt; Preferences -&gt; Profiles…</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?id=docker:openshift&amp;rev=1776179297&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-14T15:08:17+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>openshift</title>
        <link>https://tmade.de/wiki/doku.php?id=docker:openshift&amp;rev=1776179297&amp;do=diff</link>
        <description>OpenShift
oc rsh pod-id
oc project
oc project project-id
oc completion bash &gt;&gt; .bashrc
oc -ndefault get network/cluster
oc label dc/apache-test app=apache-test
oc scale --replicas=1 dc -l labelname=value
oc scale --replicas=0 dc -l app.kubernetes.io/component=worker   #scale dc´s by label
oc scale --replicas=0 dc dc-name                                 #scale single dc
oc get pods --selector=app.kubernetes.io/component=worker
oc get pods -l app.kubernetes.io/component=worker
oc get dc | cut -d &quot;…</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?id=linux:vi&amp;rev=1775570922&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-04-07T14:08:42+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>vi - [Visual Mode] </title>
        <link>https://tmade.de/wiki/doku.php?id=linux:vi&amp;rev=1775570922&amp;do=diff</link>
        <description>Home tmade.de

Home Wiki

VI

Search
^                    #A line beginns with
$                    #A line ends with
\&lt;                   #A word beginns with
\&gt;                   #A word ends with
:set hlsearch        #Highlight spaces
%                    #Jump to closing bracket, when curser is on &quot;{&quot; or &quot;}&quot;
#                    #Jump to function, when curser is on function or where the function is called (and vice versa)</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?image=iot%3Apasted%3A20240205-194239.png&amp;ns=iot%3Apasted&amp;rev=1707158559&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2024-02-05T18:42:39+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>20240205-194239.png - created</title>
        <link>https://tmade.de/wiki/doku.php?image=iot%3Apasted%3A20240205-194239.png&amp;ns=iot%3Apasted&amp;rev=1707158559&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://tmade.de/wiki/lib/exe/fetch.php?w=500&amp;amp;h=500&amp;amp;tok=11fb88&amp;amp;media=iot:pasted:20240205-194239.png&quot; alt=&quot;20240205-194239.png&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?image=playground%3Apasted%3A20230519-191639.png&amp;ns=playground%3Apasted&amp;rev=1684516599&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2023-05-19T17:16:39+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>20230519-191639.png - created</title>
        <link>https://tmade.de/wiki/doku.php?image=playground%3Apasted%3A20230519-191639.png&amp;ns=playground%3Apasted&amp;rev=1684516599&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://tmade.de/wiki/lib/exe/fetch.php?w=500&amp;amp;h=500&amp;amp;tok=e9aa6e&amp;amp;media=playground:pasted:20230519-191639.png&quot; alt=&quot;20230519-191639.png&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
    <item rdf:about="https://tmade.de/wiki/doku.php?image=windows%3Apasted%3A20200226-102307.png&amp;ns=windows%3Apasted&amp;rev=1582708987&amp;tab_details=history&amp;media_do=diff&amp;do=media">
        <dc:format>text/html</dc:format>
        <dc:date>2020-02-26T09:23:07+00:00</dc:date>
        <dc:creator>tmade (tmade@undisclosed.example.com)</dc:creator>
        <title>20200226-102307.png - created</title>
        <link>https://tmade.de/wiki/doku.php?image=windows%3Apasted%3A20200226-102307.png&amp;ns=windows%3Apasted&amp;rev=1582708987&amp;tab_details=history&amp;media_do=diff&amp;do=media</link>
        <description>&lt;img src=&quot;https://tmade.de/wiki/lib/exe/fetch.php?w=500&amp;amp;h=500&amp;amp;tok=ba3506&amp;amp;media=windows:pasted:20200226-102307.png&quot; alt=&quot;20200226-102307.png&quot; loading=&quot;lazy&quot; width=&quot;500&quot; height=&quot;500&quot; /&gt;</description>
    </item>
</rdf:RDF>
