This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# derived from official installation script: https://zellij.dev/launch | |
dir="/usr/local/bin" | |
if [[ -x "$dir/zellij" ]] | |
then | |
"$dir/zellij" "$@" | |
exit |
-
Info:
-
Command:
-
pacaur -S terminus-font
-
В (n)vim есть много внутренних буферов обмена, называемых регистрами,
которые можно активировать с помощью "
и названия буфера,
например "+
или "0
.
После этого следует команда, использующая выбранный регистр:
"+y
чтобы скопировать текст в буфер+
(системный)"+p
чтобы вставить из него.
Бесплатная книга-сайт на русском, полный гайд
Advanced Bash-Scripting Guide
BASH — Bourne-Again SHell (что может переводится как «перерожденный шел», или «Снова шел Борна(создатель sh)»), самый популярный командный интерпретатор в юниксоподобных системах, в особенности в GNU/Linux. Ниже приведу ряд встроенных команд, которые мы будем использовать для создания своих скриптов.
>break
выход из цикла for, while или until
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Область ПеременныеМодуля | |
Перем ОсновнойМодуль Экспорт; | |
#КонецОбласти | |
#Область ПрограммныйИнтерфейс | |
// Общая точка входа для кастомизации и переопределения поведения коробочной версии | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
chcp 1251 > nul | |
echo $ 1cv8 %* | |
set LOGFILE=%temp%\%random%.log | |
"C:\Program Files\1cv8\current\bin\1cv8" %* /Out %LOGFILE% | |
<%LOGFILE% (set /p LOGFILECONTENT=) | |
echo %LOGFILECONTENT% | |
if exist %LOGFILE% ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set v8version=8.3.14.1779 | |
set v8path="C:\Program Files\1cv8\%v8version%\bin\1cv8" | |
set edtprojectpath=%cd%\dp | |
set tmpdir=%cd%\tmp | |
set buildpath=%edtprojectpath%\bin | |
md "%tmpdir%" | |
md "%tmpdir%\ws" |
NewerOlder