ff-here 91 B

1234567
  1. #!/bin/bash
  2. if [[ "$1" = /* ]]; then
  3. firefox file://$1
  4. else
  5. firefox file://$(pwd)/$1
  6. fi