Remove syntax files
This commit is contained in:
parent
54276bc1d2
commit
ef9e1d1552
10 changed files with 2 additions and 99 deletions
|
@ -12,5 +12,4 @@ renamenote
|
||||||
shellnotes (-u/-v/-r/-l/-sd/-h/-au)
|
shellnotes (-u/-v/-r/-l/-sd/-h/-au)
|
||||||
clearlogs
|
clearlogs
|
||||||
resetshellnotes (-f)
|
resetshellnotes (-f)
|
||||||
notewc
|
noteinfo
|
||||||
notegrep (-sc/-cl/-sl/-cf/-sf/-ws)
|
|
|
@ -122,7 +122,6 @@ The tree looks like this:
|
||||||
| | |-- sd-input3.txt
|
| | |-- sd-input3.txt
|
||||||
| | `-- sd.sh
|
| | `-- sd.sh
|
||||||
| |-- shellnotes.sh
|
| |-- shellnotes.sh
|
||||||
| |-- syntax
|
|
||||||
| |-- u
|
| |-- u
|
||||||
| | `-- u.sh
|
| | `-- u.sh
|
||||||
| `-- v
|
| `-- v
|
||||||
|
|
|
@ -9,8 +9,7 @@ proccess, as well as all the imports needed for the program to work. The imports
|
||||||
2. Scripts run every time the terminal is launched (i.e. Version getter (getv))
|
2. Scripts run every time the terminal is launched (i.e. Version getter (getv))
|
||||||
3. The shellnotes command with all of its parameters (file found in /util/shellnotes.sh, params
|
3. The shellnotes command with all of its parameters (file found in /util/shellnotes.sh, params
|
||||||
in subfolders of util/)
|
in subfolders of util/)
|
||||||
4. Syntax (Comments including used snippets in scripts)
|
4. "Hidden" commands (files containing a (.) in /util, actions for cleaning space etc.)
|
||||||
5. "Hidden" commands (files containing a (.) in /util, actions for cleaning space etc.)
|
|
||||||
|
|
||||||
In the .shellnotes.sh file, the imports are ordered like this:
|
In the .shellnotes.sh file, the imports are ordered like this:
|
||||||
|
|
||||||
|
@ -30,6 +29,3 @@ In the .shellnotes.sh file, the imports are ordered like this:
|
||||||
|
|
||||||
Hidden commands (i.e. clearlogs, run only when necessary)
|
Hidden commands (i.e. clearlogs, run only when necessary)
|
||||||
|
|
||||||
|
|
||||||
syntax (hidden in /util)
|
|
||||||
|
|
||||||
|
|
|
@ -25,9 +25,3 @@ DIR="$(pwd)"
|
||||||
. ~/.shellnotes/util/shellnotes.sh
|
. ~/.shellnotes/util/shellnotes.sh
|
||||||
. ~/.shellnotes/util/.hidden/.clearlogs.sh
|
. ~/.shellnotes/util/.hidden/.clearlogs.sh
|
||||||
. ~/.shellnotes/util/.hidden/.resetshellnotes.sh
|
. ~/.shellnotes/util/.hidden/.resetshellnotes.sh
|
||||||
. ~/.shellnotes/util/syntax/.logsyntax.sh
|
|
||||||
. ~/.shellnotes/util/syntax/.copr.sh
|
|
||||||
. ~/.shellnotes/util/syntax/.dir.sh
|
|
||||||
. ~/.shellnotes/util/syntax/.me.sh
|
|
||||||
. ~/.shellnotes/util/syntax/.dir.sh
|
|
||||||
. ~/.shellnotes/util/syntax/.param.sh
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
:<<'info'
|
|
||||||
shellnotes - .copr.sh (syntax)
|
|
||||||
(C) Dimitris Marakomihelakis
|
|
||||||
Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
in /docs/github/ for its full text.
|
|
||||||
info
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#Copyright comment, used in all files.
|
|
||||||
#syntax for shell scripts:
|
|
||||||
#:<<'info'
|
|
||||||
#shellnotes - filename.sh
|
|
||||||
#(C) Dimitris Marakomihelakis
|
|
||||||
#Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
#in /docs/github/ for its full text.
|
|
||||||
#info
|
|
||||||
|
|
||||||
#syntax for C++:
|
|
||||||
#/*
|
|
||||||
#shellnotes - disfailed.cpp
|
|
||||||
#(C) Dimitris Marakomihelakis
|
|
||||||
#Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
#in /docs/github/ for its full text.
|
|
||||||
#*/
|
|
||||||
|
|
||||||
#syntax for Python:
|
|
||||||
#shellnotes - d.py
|
|
||||||
#(C) Dimitris Marakomihelakis
|
|
||||||
#Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
#in /docs/github/ for its full text.
|
|
|
@ -1,9 +0,0 @@
|
||||||
:<<'info'
|
|
||||||
shellnotes - .dir.sh (syntax)
|
|
||||||
(C) Dimitris Marakomihelakis
|
|
||||||
Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
in /docs/github/ for its full text.
|
|
||||||
info
|
|
||||||
|
|
||||||
#code...
|
|
||||||
#cd $DIR
|
|
|
@ -1,13 +0,0 @@
|
||||||
:<<'info'
|
|
||||||
shellnotes - .logsyntax.sh (syntax)
|
|
||||||
(C) Dimitris Marakomihelakis
|
|
||||||
Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
in /docs/github/ for its full text.
|
|
||||||
info
|
|
||||||
|
|
||||||
#syntax:
|
|
||||||
|
|
||||||
#g++ file.cpp -o compiledfile -> make a compiled version of the logger
|
|
||||||
#~/.shellnotes/util/logfiles/enfailed -> run the compiled file
|
|
||||||
#rm -f enfailed -> delete the compiled file
|
|
||||||
#cd $DIR -> dir="$(pwd)" in main scripts
|
|
|
@ -1,9 +0,0 @@
|
||||||
:<<'info'
|
|
||||||
shellnotes - .me.sh (syntax)
|
|
||||||
(C) Dimitris Marakomihelakis
|
|
||||||
Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
in /docs/github/ for its full text.
|
|
||||||
info
|
|
||||||
|
|
||||||
#code...
|
|
||||||
#echo "Saved in home/users/$USR/Notes/"
|
|
|
@ -1,12 +0,0 @@
|
||||||
:<<'info'
|
|
||||||
shellnotes - param.sh(syntax)
|
|
||||||
(C) Dimitris Marakomihelakis
|
|
||||||
Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
in /docs/github/ for its full text.
|
|
||||||
info
|
|
||||||
|
|
||||||
#if [ $# -eq 0 ]; then
|
|
||||||
# echo -n "Enter note name: " && read notename
|
|
||||||
#else
|
|
||||||
# notename=$1
|
|
||||||
#fi
|
|
|
@ -1,10 +0,0 @@
|
||||||
:<<'info'
|
|
||||||
shellnotes - .undrln.sh (syntax)
|
|
||||||
(C) Dimitris Marakomihelakis
|
|
||||||
Released under the "All rights reserved" category. See the RIGHTS.txt file
|
|
||||||
in /docs/github/ for its full text.
|
|
||||||
info
|
|
||||||
|
|
||||||
#str="Manipulated $notename in $DEFAULT_PATH"
|
|
||||||
#underlines=$(echo "$str" | tr -c '\010' '-')
|
|
||||||
#echo "$str\n$underlines"
|
|
Loading…
Reference in a new issue