Skip to content
Snippets Groups Projects
fsl_abspath 284 B
Newer Older
Matthew Webster's avatar
Matthew Webster committed
#!/usr/bin/env python
Matthew Webster's avatar
Matthew Webster committed
#   fsl_abspath - return true file path
#   Matthew Webster FMRIB Image Analysis Group
#   Copyright (C) 2009 University of Oxford 
Matthew Webster's avatar
Matthew Webster committed
from __future__ import print_function
Matthew Webster's avatar
Matthew Webster committed
import sys
import os

Matthew Webster's avatar
Matthew Webster committed
print (os.path.realpath(sys.argv[1]))
Matthew Webster's avatar
Matthew Webster committed
sys.exit(0)