mirror of
https://github.com/catppuccin/catppuccin
synced 2024-11-13 23:37:07 +00:00
b9bbd77c7f
* docs: restructure & improve contrib docs * chore: rework samples code * docs: fix capitalization & brand names * docs: PR comments & try to standardise palette vs flavor * docs: add sample-programs * docs: update submission guidelines (refs: #1821) * refactor: tidy up docs Co-authored-by: winston <hey@winston.sh>
23 lines
386 B
Bash
23 lines
386 B
Bash
#!/usr/bin/env sh
|
|
|
|
#Sample comment
|
|
let "a=16 << 2";
|
|
b="Sample text";
|
|
|
|
function foo() {
|
|
if [ $string1 == $string2 ]; then
|
|
for url in `cat example.txt`; do
|
|
curl $url > result.html
|
|
done
|
|
fi
|
|
}
|
|
|
|
rm -f $(find / -name core) &> /dev/null
|
|
mkdir -p "${AGENT_USER_HOME_${PLATFORM}}"
|
|
|
|
multiline='first line
|
|
second line
|
|
third line'
|
|
cat << EOF
|
|
Sample text
|
|
EOF
|