blob: 135a886df99a8cf6eb9df4e8824fadf92fa4d6bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# SPDX-License-Identifier: GPL-2.0-or-later
# https://github.com/dehesselle/bash_d
### description ################################################################
# This is a replacement for GNU's '-f' extension to 'readlink' which is not
# part of the BSD version.
### includes ###################################################################
# Nothing here.
### variables ##################################################################
# Nothing here.
### functions ##################################################################
# Nothing here.
### aliases ####################################################################
alias readlinkf='perl -e '"'"'use Cwd "abs_path"; print abs_path(@ARGV[0])'"'"' --'
### main #######################################################################
# Nothing here.
|