mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 02:40:14 +00:00
move templates to legacy dir
This commit is contained in:
12
legacy/templates/programs/skeleton.py
Normal file
12
legacy/templates/programs/skeleton.py
Normal file
@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""
|
||||
Program
|
||||
"""
|
||||
|
||||
def main():
|
||||
"""Run the program"""
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
8
legacy/templates/programs/skeleton.sh
Normal file
8
legacy/templates/programs/skeleton.sh
Normal file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
|
||||
cat <<EOH
|
||||
Help text
|
||||
EOH
|
||||
exit
|
||||
fi
|
Reference in New Issue
Block a user