You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/osx/ql.fish

9 lines
222 B
Fish

# Quick Look a specified file
function ql -d "Quick Look a specified file"
if [ (count $argv) -gt 0 ]
qlmanage >/dev/null ^/dev/null -p Applications/ &
else
echo "No file or folder as argument given"
end
end