-
Notifications
You must be signed in to change notification settings - Fork 0
/
Comandos_de_la_terminal%2FDot_y_DotDot.mw
62 lines (43 loc) · 1.73 KB
/
Comandos_de_la_terminal%2FDot_y_DotDot.mw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
__NOTOC__
* [[:#Dot y DotDot | Dot y DotDot]]
== Dot y DotDot ==
<syntaxhighlight lang="bash">
[rrc@Llawyr Presentaciones]$ ls
Asterisk/ InstallMandriva/ MurosContrafuegos/ PPPoE/
Bash/ InstallMDK2010.0/ OpenSSH/ QoS/
DHCP/ LSComando* OpenVPN/ Squid/
[rrc@Llawyr Presentaciones]$ ls .
Asterisk/ InstallMandriva/ MurosContrafuegos/ PPPoE/
Bash/ InstallMDK2010.0/ OpenSSH/ QoS/
DHCP/ LSComando* OpenVPN/ Squid/
[rrc@Llawyr Presentaciones]$ ls ./OpenVPN/
client.conf openvpn/ OpenVPN.odp server.conf
gaytan70.ovpn openvpn-2.2.1-install.exe OpenVPN.pdf
[rrc@Llawyr Presentaciones]$ ls -al LSComando
-rwx------ 1 rrc rrc 5 Nov 14 11:48 LSComando*
[rrc@Llawyr Presentaciones]$ cat LSComando
ls /
[rrc@Llawyr Presentaciones]$ echo $PATH
/usr/local/bin:/usr/bin:/usr/games:/usr/lib64/qt4/bin:/home/rrc/bin
[rrc@Llawyr Presentaciones]$ LSComando
bash: LSComando: command not found
[rrc@Llawyr Presentaciones]$ ./LSComando
1 boot etc initrd lib64 media opt root sbin sys usr
bin dev home lib lost+found mnt proc run srv tmp var
[rrc@Llawyr ~]$ cd /usr/share/doc/systemd/
[rrc@Llawyr systemd]$ pwd
/usr/share/doc/systemd
[rrc@Llawyr systemd]$ cd /usr/share/doc/system-config-printer/
[rrc@Llawyr system-config-printer]$ pwd
/usr/share/doc/system-config-printer
[rrc@Llawyr system-config-printer]$ cd ../systemd
[rrc@Llawyr systemd]$ pwd
/usr/share/doc/systemd
[rrc@Llawyr systemd]$ cd ../../gnome-tweak-tool/
[rrc@Llawyr gnome-tweak-tool]$ pwd
/usr/share/gnome-tweak-tool
[rrc@Llawyr gnome-tweak-tool]$ cd ../../../../home/rrc
[rrc@Llawyr ~]$ pwd
/home/rrc
</syntaxhighlight>
[[Category:Comandos de la terminal]]