11 lines
104 B
Bash
Executable file
11 lines
104 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
local forkprogs=(
|
|
geeqie
|
|
feh
|
|
)
|
|
|
|
for i in $forkprogs; do
|
|
alias $i="fork $i"
|
|
done
|