├── Check-GPU-occupy-on-the-fly.sh ├── Check_FileNum.sh ├── Check_System_Distribution.sh ├── Check_TensorFlow_Version.sh ├── Count_File_Lines.sh ├── Count_Folder_Num.sh ├── Delete_DS_Store.sh ├── Draw_Caffe_TrainingLog.sh ├── Import_Caffe_Pycharm.py ├── Mount_Remote.sh ├── README.md ├── Search_and_Mount_Disk.sh ├── Select_GPU2Run.sh ├── Select_HeadfromList.sh ├── Select_TailfromList.sh ├── Shuffle_List.sh ├── Start_Ipython_Notebook_in_Mac.sh └── anaconda_bashrc.sh /Check-GPU-occupy-on-the-fly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Check-GPU-occupy-on-the-fly.sh -------------------------------------------------------------------------------- /Check_FileNum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Check_FileNum.sh -------------------------------------------------------------------------------- /Check_System_Distribution.sh: -------------------------------------------------------------------------------- 1 | lsb_release -a 2 | -------------------------------------------------------------------------------- /Check_TensorFlow_Version.sh: -------------------------------------------------------------------------------- 1 | python -c 'import tensorflow as tf; print(tf.__version__)' 2 | -------------------------------------------------------------------------------- /Count_File_Lines.sh: -------------------------------------------------------------------------------- 1 | grep -vc '^$' file.txt 2 | -------------------------------------------------------------------------------- /Count_Folder_Num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Count_Folder_Num.sh -------------------------------------------------------------------------------- /Delete_DS_Store.sh: -------------------------------------------------------------------------------- 1 | find . -name "*.DS_Store" -type f -delete 2 | -------------------------------------------------------------------------------- /Draw_Caffe_TrainingLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Draw_Caffe_TrainingLog.sh -------------------------------------------------------------------------------- /Import_Caffe_Pycharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Import_Caffe_Pycharm.py -------------------------------------------------------------------------------- /Mount_Remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Mount_Remote.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ubuntu Useful Instructions 2 | -------------------------------------------------------------------------------- /Search_and_Mount_Disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Search_and_Mount_Disk.sh -------------------------------------------------------------------------------- /Select_GPU2Run.sh: -------------------------------------------------------------------------------- 1 | export CUDA_VISIBLE_DEVICES=device_id 2 | -------------------------------------------------------------------------------- /Select_HeadfromList.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Select_HeadfromList.sh -------------------------------------------------------------------------------- /Select_TailfromList.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Select_TailfromList.sh -------------------------------------------------------------------------------- /Shuffle_List.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Shuffle_List.sh -------------------------------------------------------------------------------- /Start_Ipython_Notebook_in_Mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/Start_Ipython_Notebook_in_Mac.sh -------------------------------------------------------------------------------- /anaconda_bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhaoJ9014/Ubuntu-Useful-Scripts/HEAD/anaconda_bashrc.sh --------------------------------------------------------------------------------