Welcome to docker.ru hosting provider linux mirror located at Moscow, Russian Federation.
Server configuration: Linux with OpenZFS, 2 x E5-2670v2, 128 GB ECC memory, 12 x 4 TB raidz2 + 1 TB SSD for L2ARC.
Network: 20 gbps uplink, IPv4 (185.253.23.31), IPv6 (2a04:8580:ffff:fffe::2).
My hostname is mirror.docker.ru
Red Hat Enterprise Linux 4: Red Hat Enterprise Linux Step By Step Guide | ||
---|---|---|
Prev | Chapter 4. Shell Prompt Basics | Next |
Linux allows you to enter multiple commands at one time. The only requirement is that you separate the commands with a semicolon.
Suppose you have downloaded a new file called foobar-1.3-2.i386.rpm and you want to put it in a new subdirectory within your home directory called rpms/, but the subdirectory has not been created. You can combine both the creation of the rpms/ directory and the moving of your downloaded file into the directory by typing the following at a shell prompt:
mkdir rpms/; mv foobar-1.3-2.i386.rpm rpms/ |
Running the combination of commands creates the directory and moves the file in one line.