mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-19 08:24:00 +00:00
8 lines
287 B
Fish
8 lines
287 B
Fish
# Glob fish's source directory.
|
|
# This timing is bound to change if the repo does,
|
|
# so it's best to build two fishes, check out one version of the repo,
|
|
# and then run this script with both.
|
|
set -l dir (dirname (status current-filename))
|
|
for i in (seq 1 100)
|
|
echo $dir/../../**
|
|
end
|