Cerca

Heus ací els resultats de la cerca.

ZSH zmv
66 Resultats, Darrera modificació:
code bash> # Remove illegal characters in a fat32 file system. Illegal characters are # / : ; * ? ... > | # NOTE: ``-Q'' and (D) is to include hidden files. $ unwanted='[:;*?\"<>|]' $ zmv -Q "(**/)(*$... )(D)" '$1${2//$~unwanted/}' # Changing part of a filename (i. e. "file-hell.name" -> "file-heaven.name") $ zmv '(*)hell(*)' '${1}heaven${2}' # or $ zmv
ZSH Globbing (extended)
7 Resultats, Darrera modificació:
://zsh.sourceforge.net/Doc/Release/Expansion.html#Filename-Generation]] * ''ls %%<path>/**/*<1-10>.txt... e no empiecen por **c** o **C** <code bash> # All files that start with A $ ls **/[A]*(.) # All files that start with A or a $ ls **/[Aa]*(.) # All Files that contain the number $ ls **/*[1]*(.) # Any fil
zsh-autoenv @linux:zsh:oh-my-zsh
7 Resultats, Darrera modificació:
rrasch/zsh-autoenv]] == configuration * AUTOENV_FILE_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.Default:
oh-my-zsh
3 Resultats, Darrera modificació:
eccionado o linea cursor a portapapeles * **copyfile**: ''copyfile <FILE>'' a portapapeles * problemas, requiere libteria adicional * lib:[[https://github.com/rob
ZSH expansion modifiers
2 Resultats, Darrera modificació:
n nivel de comillas * **P**: absolute path of file * **h**: basename * **r**: remove extensi... r-your-z-shell/]] * [[http://zsh.sourceforge.net/Doc/Release/Expansion.html#Filename-Generation]] *