LinuxScrips/test.sh

11 lines
175 B
Bash
Raw Normal View History

2022-02-02 18:00:05 +01:00
#!/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