Create quine.sh

This commit is contained in:
Anthony Wang 2021-04-25 16:12:31 -05:00 committed by GitHub
parent fc4ee12563
commit 304c5e814d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

1
quine/quine.sh Normal file
View file

@ -0,0 +1 @@
for f in *;do if [ -f "$f" ]&&[[ -n $(sed -n '/^for f in/p;q' "$f") ]];then cat "$f";fi;done