Cerca

Heus ací els resultats de la cerca.

ZSH
45 Resultats, Darrera modificació:
= ZSH * [[linux:zsh:install]] * [[http://zsh.sourceforge.net/]] * introducción: * [[https://linuxconfig.org/learn-the-basics-of-the-zsh-shell]] * [[http://reasoni
ZSH zmv
35 Resultats, Darrera modificació:
-w**: añade paréntesis en los %%*%% * **-i**: interactivo == ejemplo === usage * renames 'foo.l... code bash>zmv '(*).lis' '$1.txt'</code> * Something simpler (for basic commands) is the -W option<co... ash> zmv -W '*.lis' '*.txt'</code> * If you combine this with noglob, you don't even need to quote t... grml.org <code bash> # Remove illegal characters in a fat32 file system. Illegal characters are # /
oh-my-zsh
33 Resultats, Darrera modificació:
= oh-my-zsh potenciador de zsh con temas y plugins : [[https://ohmyz.sh/]] == install * ''sh -c %%"%%$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)%%"%%'' más: [[https://www.howtoforg... e.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/]] * ''chsh -s $(which zsh)'' : cambiar shell
ZSH install
23 Resultats, Darrera modificació:
= ZSH install * [[https://geekytheory.com/como-instalar-oh-my-zsh-en-ubuntu]] * [[https://blog.armesto.net/sacale-el-maximo-partido-a-tu-terminal-con-zsh/]] * MAC: [[https://sourabhbajaj.com/mac-setup/iTerm/zsh.html]] == install * <code bash>sudo apt install -y fonts-pow
zsh-autoenv @linux:zsh:oh-my-zsh
20 Resultats, Darrera modificació:
ILE_ENTER: Name of the file to look for when entering directories. Default: .autoenv.zsh * AUTOENV_FILE_LEAVE: Name of the file to look for when leaving directories. Requires AUTOENV_HANDLE_LEAVE=1.Def... _LOOK_UPWARDS: Look for zsh-autoenv "enter" files in parent dirs?. Default: 1 * AUTOENV_HANDLE_LEAVE: Handle leave events when changing away from a subtree, where an "enter" event was
ZSH Globbing (extended)
15 Resultats, Darrera modificació:
= ZSH Globbing (extended) == glob expression * ''ls %%<path>/*/*%%'' : lista todos los ficheros a 2 ... ''ls %%**/*(/)%%'': listar solo directorios * coindidencia parcial:<code bash> ## Starts with READ $... D)*.* ## Ends With READ $ ls **/*(READ).* ## Contains READ Anywhere $ ls **/*(READ)*.*</code> == glob... ith A or a $ ls **/[Aa]*(.) # All Files that contain the number $ ls **/*[1]*(.) # Any files that end
ZSH features
9 Resultats, Darrera modificació:
* ''cd /u/lo/b'' -> <TAB> -> ''cd /usr/local/bin'' * **path** replacement * ''cd /usr/local/bin'' -> ERROR, quería ir a /usr/local/share -> ''cd bin share'' * ''cd /srv/www/site1/current/log'' -... ntos: * **L** : volcado de alias para poder incrustar en un fichero batch (estructura alias xx=y
ZSH Parameter Expansion Flags
3 Resultats, Darrera modificació:
Parameter Expansion Flags de manera similar a [[linux:zsh:modifiers|]], si dentro de una variable en ... erte en un array la sustitución * **a**: sort in array index * **C**: capitalize * **L**: lowercase * **U**: uppercase * mucho más: [[
ZSH prompt
3 Resultats, Darrera modificació:
= ZSH prompt <code ; ~/.zshrc> autoload -Uz promptinit promptinit </code> <code bash> prompt -p prompt -l </code> /via: [[https://wiki.archlinux.org/title/Zsh#Prompt_themes]]
ZSH expansion modifiers
2 Resultats, Darrera modificació:
ciones (s/<CAD1>/<CAD2>/)<code bash; zsh>for hash in $(./rhash_static --list-hashes); do echo "hash: ${hash:l:s/-//}"; done</code> * incluye algunos modificadores para archivos * má
ZSH TAB Expansion
2 Resultats, Darrera modificació:
TAB Expansion <code bash; .zshrc>autoload -U compinit compinit</code> * .oh-my-zsh lo activa por defecto