Skip to content
Snippets Groups Projects
fsl_abspath 241 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 
#   SHCOPYRIGHT

import sys
import os

print os.path.realpath(sys.argv[1])
sys.exit(0)