This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Tool to maintain p2 composite repositories | |
USAGE="Usage: | |
`basename "$0"` <repo-dir> [options] operation, operation ... | |
Options: | |
--name <repo name> | |
the repository name | |
--eclipse <eclipse install dir> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to check copyright headers in RAP | |
# Usage: check-copyright.sh <file or folder> | |
# | |
# Checks for latest change of the file. For every file that has been | |
# changed in the current year, but does not have a copyright header | |
# with this year in it, a message is prepended to the file. | |
if [ $# -lt 1 ]; then | |
echo missing argument |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# This script prints an overview of the escape sequences for changing the | |
# terminal text and background colors using escape sequences. | |
name030="Black " | |
name130="Gray " | |
name031="Red " | |
name131="Light Red " | |
name032="Green " |
NewerOlder