Show Menu
Cheatography

Linux desde cero Cheat Sheet by

Comandos básicos para los más nuevos

Ficheros

Crear fichero
touch ficher­­o.txt
 
echo > ficher­­o.txt
Eliminar fichero
rm ficher­­o.txt
Eliminar fichero [forzoso]
rm -f ficher­­o.txt
Mostrar contenido
cat
Abrir fichero con visual­­izador
less
Mostrar contenido de arriba a abajo
more
Mostrar las 10 primeras líneas
head
Mostrar las 10 últimas líneas
tail
Abrir en editor
vi / vim / nano
Abrir en editor en modo lectura [vi]
vi / vim -R
Abrir en editor en modo lectura [nano]
nano --view

Carpetas

Crear
mkdir
Eliminar [vacio]
rmdir
Eliminar [con contenido]
rm -r
Listar
ls
Listar [ocultos]
ls -a
 

Manipu­lación

Copiar
cp
Copiar direct­­orios recurs­­iv­a­mente
cp -r <so­urc­e> <de­sti­nat­ion>
Mover
mv <so­urc­e> <de­sti­nat­ion>
Renombrar
mv
Borrar directorio
rm -r

Varios

Ver distri­bución Linux, kernel,
hostna­mectl
 
lsb_re­lease -a
Contar
wc -l
Cambiar permisos ficheros
chown
Filtrar
grep
filtrar + globbing
grep -E

VIM

Go to the first line of the file
gg
Go to the last line of the file
G
Go to the 10th line of the file
10G
Insert at cursor
i
Insert at start of line
I (i mayus)
Append line under cursor
o
Write file
:w
Quit vim
:q
Write and quit
:wq
 

Enlaces

Enlace duro
ln [destino] [nombr­­e_­d­e­l_­­enlace]
Enlace simbólico
ln -s [destino] [nombr­­e_­d­e­l_­­enlace]
Eliminar enlace
unlink

Globbing

Any single character
?
Any number of character
*
Character from a range
[ ]
Starting character
^
Ending Character
$
More than one pattern
{ }
Aplicar más condic­iones
|
       
 

Comments

No comments yet. Add yours below!

Add a Comment

Your Comment

Please enter your name.

    Please enter your email address

      Please enter your Comment.

          Related Cheat Sheets

          Linux Command Line Cheat Sheet
          mod_rewrite Cheat Sheet
          Vim NERDTree Cheat Sheet