Skip to content
Snippets Groups Projects
Select Git revision
  • f60e5525bc402f9466ba639a3db07521a0f1f1aa
  • master default
  • object
  • develop protected
  • private_algos
  • cuisine
  • SMOTE
  • revert-76c4cca5
  • archive protected
  • no_graphviz
  • 0.0.2
  • 0.0.1
12 results

objects.inv

Blame
  • create_work_subdirs.sh 468 B
    #!/bin/bash
    for subdir in $NEEDED_WORK_DIRS; do
    		dir=/home/jovyan/work/$subdir
    		ln -s $dir /home/jovyan/$subdir
            if [ ! -f $dir ]; then
            	echo Creating $dir
            	mkdir -p $dir
            	chmod 700  $dir
            fi
    done
    
    for subfile in $NEEDED_WORK_FILES; do
    		file=/home/jovyan/work/$subfile
    		ln -s $file /home/jovyan/$subfile
            if [ ! -f $file ]; then
            	echo Creating $file
            	touch $file
            	chmod 700  $dir
            fi
    done