8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
|
#!/bin/sh
|
||
|
if echo $1 | grep -qv '^/'; then
|
||
|
absolute_path_file="$(pwd)/$1"
|
||
|
else
|
||
|
absolute_path_file="$1"
|
||
|
fi
|
||
|
$TERMINAL $FILE "${absolute_path_file%/*}"
|