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
    
  
  
    
  | find * -type f -name "*.c" | jq -R -s 'split("\n") | map({"File": .})' | 
  
    
      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
    
  
  
    
  | Style choice | |
| vxprj vsb config -w -add _WRS_CONFIG_VXTEST_BUILD=y | |
| or | |
| wrtool prj vsb config -w -add _WRS_CONFIG_VXTEST_BUILD=y | |
| wrtool prj vsb config -w -add _WRS_CONFIG_DEBUG_FLAG=y | |
| wrtool prj vsb config -w -add _WRS_CONFIG_VXTEST_BUILD=y | 
  
    
      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
    
  
  
    
  | sed 's/^\([^:]*\):\([^:]*\):\([^:]*\):\([^:]*\):..*/\1 \2/' filename.txt | 
  
    
      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/sh | |
| # kubedeployshell.sh | |
| # run a shell on a kubernetes container based on deployment name | |
| cmd=/bin/bash | |
| function help() { | |
| echo "usage: $0 [options] deployment [container]" | |
| echo " [-h] display this help command" | |
| echo " [-c command] command to execute on container" | 
  
    
      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
    
  
  
    
  | #!/usr/bin/emacs --script | |
| ;(print command-line-args-left) | |
| (defun untabify-buffer () | |
| "Untabify the whole buffer." | |
| (untabify (point-min) (point-max)) | |
| ) | |
| (while command-line-args-left | |
| (setq target (pop command-line-args-left)) |