You are not logged in.
Pages: 1
In AUR https://aur.archlinux.org/cgit/aur.git/ … f-ms-win10,
some lines like
source=(${_ttf_ms_win10[@]/#/file://}
${_ttf_ms_win10_japanese[@]/#/file://}
${_ttf_ms_win10_korean[@]/#/file://}I've read https://wiki.archlinux.org/index.php/PKGBUILD, no answer.
Where can I find the doc for the grammar?
Thanks
Last edited by followait (2020-10-27 08:00:41)
Offline
man bashAs all PKGBUILDs are bash scripts.
${_ttf_ms_win10[@]/#/file://} appends file:// to the start of each entry in the array _ttf_ms_win10 by substituting file:// for an empty match at the start of the string.
Offline
man bashAs all PKGBUILDs are bash scripts.
${_ttf_ms_win10[@]/#/file://} appends file:// to the start of each entry in the array _ttf_ms_win10 by substituting file:// for an empty match at the start of the string.
Alright, thanks.
Offline
Pages: 1