Estoy buscando un comando simple que pueda usarse dentro de Bash para encontrar la ruta absoluta y canonicalizada a un archivo en OS X (similar a ``readlink -f'' en Linux).
La siguiente sesión de bash de ejemplo describe una utilidad [ficticia] llamada ``abspath'' que muestra el comportamiento deseado:
$ pwd
/Users/guyfleegman
$ ls -lR
drwxr-xr-x 4 guyfleegman crew 136 Oct 30 02:09 foo
./foo:
-rw-r--r-- 1 guyfleegman crew 0 Oct 30 02:07 bar.txt
lrwxr-xr-x 1 guyfleegman crew 7 Oct 30 02:09 baz.txt -> bar.txt
$ abspath .
/Users/guyfleegman
$ abspath foo
/Users/guyfleegman/foo
$ abspath ./foo/bar.txt
/Users/guyfleegman/foo/bar.txt
$ abspath foo/baz.txt
/Users/guyfleegman/foo/baz.txt
Al igual que con la última invocación de ``abspath'' en el ejemplo anterior, preferiría que no resolviera automáticamente los enlaces simbólicos, pero no voy a ser demasiado exigente aquí.
Respuesta1
function abspath() { pushd . > /dev/null; if [ -d "$1" ]; then cd "$1"; dirs -l +0; else cd "`dirname \"$1\"`"; cur_dir=`dirs -l +0`; if [ "$cur_dir" == "/" ]; then echo "$cur_dir`basename \"$1\"`"; else echo "$cur_dir/`basename \"$1\"`"; fi; fi; popd > /dev/null; }
Ejemplos:
abspath / => /
abspath /.DS_Store => /.DS_Store
abspath ~ => /Users/mschrag
cd /tmp; abspath . => /tmp
cd /; abspath .DS_Store => /.DS_Store
Respuesta2
No creo que haya un comando integrado que haga esto.jesse wilsonescribió un script bash para esto:
#!/bin/bash
cd -P -- "$(dirname -- "$1")" &&
printf '%s\n' "$(pwd -P)/$(basename -- "$1")"
Sin embargo, no funciona bien para rutas directamente debajo de /
, como /etc
(imprimir //etc
), así como .
y ..
(imprimir /cwd/.
en ambos casos). Intenté modificarlo, pero mi bash-fu insuficiente me falló.
Aquí está mi sugerencia:
#!/usr/bin/env python
import os.path
import sys
for arg in sys.argv[1:]:
print os.path.abspath(arg)
Guárdelo como /usr/bin/abspath
o algo así y hágalo ejecutable. Salida de muestra:
Servus08:~ danielbeck$ abspath .
/Users/danielbeck
Servus08:~ danielbeck$ abspath /tmp
/tmp
Servus08:~ danielbeck$ abspath Documents
/Users/danielbeck/Documents
Servus08:~ danielbeck$ abspath . /tmp Documents
/Users/danielbeck
/tmp
/Users/danielbeck/Documents
Si ustedhacerSi desea una resolución de enlace simbólico, cambie la print
línea así:
print os.path.realpath(os.path.abspath(arg))
para conseguir esto:
Servus08:~ danielbeck$ abspath . /tmp Documents
/Users/danielbeck
/private/tmp
/Users/danielbeck/Documents
Respuesta3
Una opción sería simplemente instalar coreutils y usar greadlink -f
. Resuelve enlaces simbólicos y funciona con /Foo/
o ~/foo.txt
si no existen, pero no con /Foo/foo.txt
si /Foo/
no existe.
$ brew install coreutils
$ greadlink -f /etc
/private/etc
$ greadlink -f ~/Documents/
/Users/lauri/Documents
$ greadlink -f ..
/Users
$ greadlink -f //etc/..////
/private
$ greadlink -f /Foo
/Foo
$ greadlink -f /Foo/foo.txt
$
Esto no resuelve enlaces simbólicos y tampoco funciona con /Foo/foo.txt
ninguno de los dos.
abspath() {
if [ -d "$1" ]; then
( cd "$1"; dirs -l +0 )
else
( cd "$(dirname "$1")"; d=$(dirs -l +0); echo "${d%/}/${1##*/}" )
fi
}
abspath /etc # /etc
abspath ~/Foo/foo.txt # doesn't work
abspath ~/Foo # works
abspath .
abspath ./
abspath ../
abspath ..
abspath /
abspath ~
abspath ~/
abspath ~/Documents
abspath /\"\ \'
abspath /etc/../etc/
abspath /private//etc/
abspath /private//
abspath //private # //private
abspath ./aa.txt
abspath aa.tar.gz
abspath .aa.txt
abspath /.DS_Store
abspath ~/Documents/Books/
dirs -l
realiza expansión de tilde. dirs +0
imprime solo el directorio superior si hay otros directorios en la pila.
Respuesta4
Si tiene el módulo File::Spec instalado para Perl, puede hacer esto:
perl -MFile::Spec -e 'print File::Spec->rel2abs("../however/complex/../you/want/to.get"), "\n"'