Skip to content

Instantly share code, notes, and snippets.

@LisichkinVlad
LisichkinVlad / stylish4wikipedia.css
Last active July 7, 2024 18:24
Stylish styles. Read ru.wikipedia article full screen wide
#mw-page-base, #mw-head-base, #mw-navigation {
display:none;
}
.mw-body, #mw-data-after-content {
margin-left: 0em;
}
@LisichkinVlad
LisichkinVlad / lsc.sh
Created December 7, 2023 00:59
Get list of files or directories separated by commas in bash
function lsc() {
# ls separated by commas
case ${1} in
"f")
ls -p | grep -v / | tr '\n' ',' | sed 's/.$//'; echo ''
;;
"d")
ls -p | grep / | tr '/' ',' | tr -d '\n' | sed 's/.$//'; echo ''
;;
*)