4 lines
123 B
Bash
Executable File
4 lines
123 B
Bash
Executable File
#! /usr/bin/fish
|
|
command echo "Hello-world-from-fish" | awk '$1=$1' FS="-" OFS=" " > /root/output.txt
|
|
cat /root/output.txt
|