feat: open shell function that replicates the macOS tool under linux

This commit is contained in:
gliech 2024-09-16 01:26:22 +02:00
parent b854851f0c
commit e2144238f1

6
.bashrc.d/open.sh Normal file
View file

@ -0,0 +1,6 @@
if ! command -v open >/dev/null 2>&1
then
function open {
gio open ${@:-.}
}
fi