Created
December 3, 2019 12:11
-
-
Save digitalist/908cd803ed62404ad9dd18991ead4d32 to your computer and use it in GitHub Desktop.
stupid bash alias (russian edition)
This file contains 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
# пример алиаса из функции, мне например лень двигать мышкой, чтобы копипастить результаты | |
# консольной команды в куда-нибудь | |
function @cs(){ # объявим функцию, она будет доступна шеллу по имени @cs | |
#команда: | |
# @cs urlparse | |
# 1) попробует найти пакет в crates.io | |
# 2) скопирует вывод первой строки в буфер обмена | |
# 3) выведет в терминал что там скопипастилось | |
cargo search $1 | head -n 1 | xclip -selection clipboard | |
xclip -o -selection clipboard | |
echo "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment