This file contains 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
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use constant ROOT_DIR => "./Inote/Inote_RestAPI"; | |
use constant PATHS => ( | |
ROOT_DIR."/src/main/java", | |
ROOT_DIR."/src/test/java" | |
); | |
use constant EX_FLAG => defined($ARGV[0]) | |
&& (("$ARGV[0]" eq "-e") |
This file contains 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
# -*- shell-script -*- | |
_write_sql_file() | |
{ | |
local cur prev opts | |
COMPREPLY=() | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
prev="${COMP_WORDS[COMP_CWORD-1]}" | |
opts="--help --version --name --major --minor --directory" | |
if [[ "${cur}" = -* ]] |
This file contains 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
DROP OWNED BY optical; | |
CREATE TABLE producttype (id int, | |
active boolean, | |
CONSTRAINT pk_producttype_id PRIMARY KEY (id)); | |
CREATE TABLE lang (id int, | |
name varchar NOT NULL, | |
CONSTRAINT pk_lang_id PRIMARY KEY (id), | |
CONSTRAINT un_lang_name UNIQUE (name)); |
This file contains 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
.\" Edited by Alnotz. | |
.\" 2023-04-02 | |
.TH "STEAM" "6" "2023-04-02" "Valve" "Steam Launcher's Manual" | |
.SH "NAME" | |
steam \- A launcher for the Steam client from Valve Corporation | |
.SH "SYNOPSIS" |