forked from Arsimael/LinuxScrips
11 lines
175 B
Bash
Executable File
11 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VARIABLES=("Deine Mudda" "path/to/heacehn" "/mimiu haha/ficköön")
|
|
for i in "${VARIABLES[@]}"; do
|
|
echo ${i}
|
|
echo ${i/'path/to'/nix} | cut -c5-
|
|
|
|
done
|
|
|
|
|