mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
11 lines
133 B
Plaintext
11 lines
133 B
Plaintext
f=" val" e=
|
|
echo "$e"$f
|
|
echo $e$f
|
|
echo "$e""$f"
|
|
|
|
if [[ "$1"x == x ]] ; then
|
|
echo "no arg passed"
|
|
exit 1
|
|
fi
|
|
echo "$1"x | cat -v
|