unbind C-b
set-option -g prefix C-k
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
# place it on `~/.tmux.conf` then run `tmux source-file ~/.tmux.conf` | |
# Increase History Size | |
set-option -g history-limit 50000 | |
set -g default-command "reattach-to-user-namespace -l zsh" | |
## Join Windows (Moving tmux pane to window) | |
## ref, https://unix.stackexchange.com/questions/14300/moving-tmux-pane-to-window | |
#bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'" | |
#bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'" |
-
Preassessment: Planning, scoping, collecting info and doc
-
Application review: Design review, code review. Several strategies adopted to learn more about the application
-
Documentation and analysis: Collecting and documenting the results of the review, risk analysis, remediations
-
Remediation support: Evaluating fixes, recheck phase
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 | |
SOLV=0.8.17 | |
folder_t=test_open | |
if [ "$1" == "make" ]; then | |
if [ -d $folder_t ] ; then | |
echo "Folder '$folder_t' already present ...quit" | |
exit -1 |